blob: f9d60320312e13356c86c77187c177e1f492db74 [file] [log] [blame]
keunyoungca515072015-07-10 12:21:47 -07001# Copyright (C) 2015 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#
15#
16
17# Build the Car service.
18
Keun-young Parkec7b18f2016-02-29 16:49:53 -080019#disble build in PDK, missing aidl import breaks build
20ifneq ($(TARGET_BUILD_PDK),true)
21
keunyoungca515072015-07-10 12:21:47 -070022LOCAL_PATH:= $(call my-dir)
23
Keun-young Parkbae6e252017-01-25 12:30:15 -080024car_service_sources := $(call all-java-files-under, src)
Keun-young Parkbae6e252017-01-25 12:30:15 -080025
keunyoungca515072015-07-10 12:21:47 -070026include $(CLEAR_VARS)
27
Keun-young Parkbae6e252017-01-25 12:30:15 -080028LOCAL_SRC_FILES := $(car_service_sources)
keunyoungca515072015-07-10 12:21:47 -070029
Steve Paik7d813f82018-06-20 12:35:23 -070030LOCAL_USE_AAPT2 := true
31
keunyoungca515072015-07-10 12:21:47 -070032LOCAL_PACKAGE_NAME := CarService
Anton Hansson4cb50c12018-02-23 15:50:29 +000033LOCAL_PRIVATE_PLATFORM_APIS := true
keunyoungca515072015-07-10 12:21:47 -070034
35# Each update should be signed by OEMs
36LOCAL_CERTIFICATE := platform
37LOCAL_PRIVILEGED_MODULE := true
38
keunyoungcc449f72015-08-12 10:46:27 -070039LOCAL_PROGUARD_FLAG_FILES := proguard.flags
keunyoungca515072015-07-10 12:21:47 -070040LOCAL_PROGUARD_ENABLED := disabled
41
Michal Palczewski1deea632019-01-11 16:48:15 -080042LOCAL_JAVA_LIBRARIES += \
43 android.car \
Ying Zhenge854f9d2018-08-17 12:15:24 -070044
Pavel Maltsev0d07c762016-11-03 16:40:15 -070045LOCAL_STATIC_JAVA_LIBRARIES += \
Michal Palczewski1deea632019-01-11 16:48:15 -080046 android.car.userlib \
47 android.hidl.base-V1.0-java \
48 android.hardware.automotive.audiocontrol-V1.0-java \
49 android.hardware.automotive.vehicle-V2.0-java \
50 android.hardware.health-V1.0-java \
51 android.hardware.health-V2.0-java \
52 vehicle-hal-support-lib \
53 car-frameworks-service \
54 car-systemtest \
55 com.android.car.procfsinspector-client \
Wenting Zhai42e73592019-04-29 13:33:40 -070056 blestream-protos \
keunyoungca515072015-07-10 12:21:47 -070057
Michal Palczewski1deea632019-01-11 16:48:15 -080058LOCAL_STATIC_ANDROID_LIBRARIES := \
59 SettingsLib \
60 androidx.preference_preference \
61 EncryptionRunner
Steve Paik7d813f82018-06-20 12:35:23 -070062
Nicholas Sauer2d95e9b2019-03-19 12:46:50 -070063LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.car
64
keunyoungca515072015-07-10 12:21:47 -070065include $(BUILD_PACKAGE)
66
Yao Chendacd7242016-01-26 14:42:42 -080067#####################################################################################
68# Build a static library to help mocking various car services in testing
69#####################################################################################
70include $(CLEAR_VARS)
keunyoungcc449f72015-08-12 10:46:27 -070071
Keun-young Parkbae6e252017-01-25 12:30:15 -080072LOCAL_SRC_FILES := $(car_service_sources)
Aurimas Liutikasf17e0e42017-11-15 09:51:51 -080073
74LOCAL_USE_AAPT2 := true
75
Yao Chendacd7242016-01-26 14:42:42 -080076LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
77
78LOCAL_MODULE := car-service-lib-for-test
79
Michal Palczewski1deea632019-01-11 16:48:15 -080080LOCAL_JAVA_LIBRARIES += \
81 android.car \
82 car-frameworks-service \
Ying Zhenge854f9d2018-08-17 12:15:24 -070083
Pavel Maltsev0d07c762016-11-03 16:40:15 -070084LOCAL_STATIC_JAVA_LIBRARIES += \
Michal Palczewski1deea632019-01-11 16:48:15 -080085 android.car.userlib \
86 android.hidl.base-V1.0-java \
87 android.hardware.automotive.audiocontrol-V1.0-java \
88 android.hardware.automotive.vehicle-V2.0-java \
89 android.hardware.health-V1.0-java \
90 android.hardware.health-V2.0-java \
91 vehicle-hal-support-lib \
92 car-systemtest \
93 com.android.car.procfsinspector-client \
Wenting Zhai42e73592019-04-29 13:33:40 -070094 blestream-protos \
Michal Palczewski1deea632019-01-11 16:48:15 -080095
96LOCAL_STATIC_ANDROID_LIBRARIES := \
97 SettingsLib \
98 androidx.preference_preference \
99 EncryptionRunner
Yao Chendacd7242016-01-26 14:42:42 -0800100
Colin Cross4543e612018-06-14 15:57:30 -0700101LOCAL_MIN_SDK_VERSION := 25
102
Yao Chendacd7242016-01-26 14:42:42 -0800103include $(BUILD_STATIC_JAVA_LIBRARY)
104
Keun-young Park417b7362016-01-29 14:28:06 -0800105include $(call all-makefiles-under,$(LOCAL_PATH))
106
Keun-young Parkec7b18f2016-02-29 16:49:53 -0800107endif #TARGET_BUILD_PDK