keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 1 | # 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 Park | ec7b18f | 2016-02-29 16:49:53 -0800 | [diff] [blame] | 19 | #disble build in PDK, missing aidl import breaks build |
| 20 | ifneq ($(TARGET_BUILD_PDK),true) |
| 21 | |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 22 | LOCAL_PATH:= $(call my-dir) |
| 23 | |
Keun-young Park | bae6e25 | 2017-01-25 12:30:15 -0800 | [diff] [blame] | 24 | car_service_sources := $(call all-java-files-under, src) |
Keun-young Park | bae6e25 | 2017-01-25 12:30:15 -0800 | [diff] [blame] | 25 | |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 26 | include $(CLEAR_VARS) |
| 27 | |
Keun-young Park | bae6e25 | 2017-01-25 12:30:15 -0800 | [diff] [blame] | 28 | LOCAL_SRC_FILES := $(car_service_sources) |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 29 | |
Steve Paik | 7d813f8 | 2018-06-20 12:35:23 -0700 | [diff] [blame] | 30 | LOCAL_USE_AAPT2 := true |
| 31 | |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 32 | LOCAL_PACKAGE_NAME := CarService |
Anton Hansson | 4cb50c1 | 2018-02-23 15:50:29 +0000 | [diff] [blame] | 33 | LOCAL_PRIVATE_PLATFORM_APIS := true |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 34 | |
| 35 | # Each update should be signed by OEMs |
| 36 | LOCAL_CERTIFICATE := platform |
| 37 | LOCAL_PRIVILEGED_MODULE := true |
| 38 | |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 39 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 40 | LOCAL_PROGUARD_ENABLED := disabled |
| 41 | |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 42 | LOCAL_JAVA_LIBRARIES += \ |
| 43 | android.car \ |
Ying Zheng | e854f9d | 2018-08-17 12:15:24 -0700 | [diff] [blame] | 44 | |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 45 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 46 | 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 Zhai | 42e7359 | 2019-04-29 13:33:40 -0700 | [diff] [blame] | 56 | blestream-protos \ |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 57 | |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 58 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
| 59 | SettingsLib \ |
| 60 | androidx.preference_preference \ |
| 61 | EncryptionRunner |
Steve Paik | 7d813f8 | 2018-06-20 12:35:23 -0700 | [diff] [blame] | 62 | |
Nicholas Sauer | 2d95e9b | 2019-03-19 12:46:50 -0700 | [diff] [blame] | 63 | LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.car |
| 64 | |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 65 | include $(BUILD_PACKAGE) |
| 66 | |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 67 | ##################################################################################### |
| 68 | # Build a static library to help mocking various car services in testing |
| 69 | ##################################################################################### |
| 70 | include $(CLEAR_VARS) |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 71 | |
Keun-young Park | bae6e25 | 2017-01-25 12:30:15 -0800 | [diff] [blame] | 72 | LOCAL_SRC_FILES := $(car_service_sources) |
Aurimas Liutikas | f17e0e4 | 2017-11-15 09:51:51 -0800 | [diff] [blame] | 73 | |
| 74 | LOCAL_USE_AAPT2 := true |
| 75 | |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 76 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 77 | |
| 78 | LOCAL_MODULE := car-service-lib-for-test |
| 79 | |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 80 | LOCAL_JAVA_LIBRARIES += \ |
| 81 | android.car \ |
| 82 | car-frameworks-service \ |
Ying Zheng | e854f9d | 2018-08-17 12:15:24 -0700 | [diff] [blame] | 83 | |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 84 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 85 | 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 Zhai | 42e7359 | 2019-04-29 13:33:40 -0700 | [diff] [blame] | 94 | blestream-protos \ |
Michal Palczewski | 1deea63 | 2019-01-11 16:48:15 -0800 | [diff] [blame] | 95 | |
| 96 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
| 97 | SettingsLib \ |
| 98 | androidx.preference_preference \ |
| 99 | EncryptionRunner |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 100 | |
Colin Cross | 4543e61 | 2018-06-14 15:57:30 -0700 | [diff] [blame] | 101 | LOCAL_MIN_SDK_VERSION := 25 |
| 102 | |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 103 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 104 | |
Keun-young Park | 417b736 | 2016-01-29 14:28:06 -0800 | [diff] [blame] | 105 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 106 | |
Keun-young Park | ec7b18f | 2016-02-29 16:49:53 -0800 | [diff] [blame] | 107 | endif #TARGET_BUILD_PDK |