blob: 66658b072824ecf7b8cd46f64f1d051d6fd27501 [file] [log] [blame]
roger xue843fbc42017-02-22 16:20:08 -08001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Bryan Eyler3f553712017-06-21 17:30:21 -070015ifneq ($(TARGET_BUILD_PDK), true)
16
roger xue843fbc42017-02-22 16:20:08 -080017LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_VARS)
20
21# To avoid build errors, build empty package for non-platform builds
22# (for example, projected). See b/30064991
23ifeq (,$(TARGET_BUILD_APPS))
24 LOCAL_PACKAGE_NAME := CarSettings
Lujiang Xuea12477f2018-04-10 08:20:29 -070025 LOCAL_PRIVATE_PLATFORM_APIS := true
roger xue843fbc42017-02-22 16:20:08 -080026
27 LOCAL_SRC_FILES := $(call all-java-files-under, src)
28
Aurimas Liutikas5b779822017-11-14 18:29:17 -080029 LOCAL_USE_AAPT2 := true
30
Anthony Chen0eaf5ff2018-04-30 13:32:47 -070031 LOCAL_JAVA_LIBRARIES += android.car
32
roger xue843fbc42017-02-22 16:20:08 -080033 LOCAL_STATIC_ANDROID_LIBRARIES := \
Anthony Cheneb642fe2018-04-04 17:43:16 -070034 android-support-car \
roger xue843fbc42017-02-22 16:20:08 -080035 android-support-v7-preference \
Rodrigo Lagos1c979d12018-04-13 15:18:43 -070036 android-support-v14-preference \
Rodrigo Lagos1c979d12018-04-13 15:18:43 -070037 car-list \
Anthony Chen0eaf5ff2018-04-30 13:32:47 -070038 car-settings-lib \
39 setup-wizard-lib-gingerbread-compat \
40 SettingsLib
roger xue843fbc42017-02-22 16:20:08 -080041
42 LOCAL_RESOURCE_DIR := \
Aurimas Liutikas5b779822017-11-14 18:29:17 -080043 $(LOCAL_PATH)/res
roger xue843fbc42017-02-22 16:20:08 -080044
roger xue843fbc42017-02-22 16:20:08 -080045 LOCAL_CERTIFICATE := platform
46
47 LOCAL_MODULE_TAGS := optional
48
49 LOCAL_PROGUARD_ENABLED := disabled
50
51 LOCAL_PRIVILEGED_MODULE := true
52
53 LOCAL_DEX_PREOPT := false
54
Aurimas Liutikas5b779822017-11-14 18:29:17 -080055 LOCAL_STATIC_JAVA_LIBRARIES += jsr305
roger xue843fbc42017-02-22 16:20:08 -080056
Enrico Granata293015e2017-12-12 12:16:58 -080057 LOCAL_DX_FLAGS := --multi-dex
58
roger xue843fbc42017-02-22 16:20:08 -080059 include $(BUILD_PACKAGE)
60endif
61
62# Use the following include to make our test apk.
63ifeq (,$(ONE_SHOT_MAKEFILE))
James Lemieux36aeaf32017-12-14 16:08:04 -080064include $(call first-makefiles-under, $(LOCAL_PATH))
roger xue843fbc42017-02-22 16:20:08 -080065endif
66
Bryan Eyler3f553712017-06-21 17:30:21 -070067endif