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 | |
| 30 | LOCAL_PACKAGE_NAME := CarService |
| 31 | |
| 32 | # Each update should be signed by OEMs |
| 33 | LOCAL_CERTIFICATE := platform |
| 34 | LOCAL_PRIVILEGED_MODULE := true |
| 35 | |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 36 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 37 | LOCAL_PROGUARD_ENABLED := disabled |
| 38 | |
Keun-young Park | e54ac27 | 2016-02-16 19:02:18 -0800 | [diff] [blame] | 39 | LOCAL_JAVA_LIBRARIES += android.car |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 40 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Steven Moreland | 14f54c5 | 2017-08-02 20:41:36 +0000 | [diff] [blame] | 41 | android.hidl.base-V1.0-java \ |
Scott Randolph | fa50f42 | 2018-01-05 11:53:02 -0800 | [diff] [blame] | 42 | android.hardware.automotive.audiocontrol-V1.0-java \ |
Steven Moreland | 14f54c5 | 2017-08-02 20:41:36 +0000 | [diff] [blame] | 43 | android.hardware.automotive.vehicle-V2.0-java \ |
Enrico Granata | 5c56d2a | 2017-02-07 15:38:12 -0800 | [diff] [blame] | 44 | vehicle-hal-support-lib \ |
Steve Paik | f90fc60 | 2018-01-31 09:57:11 -0800 | [diff] [blame^] | 45 | car-frameworks-service \ |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 46 | car-systemtest \ |
Enrico Granata | e23f034 | 2017-10-23 17:17:52 -0700 | [diff] [blame] | 47 | com.android.car.procfsinspector-client \ |
keunyoung | ca51507 | 2015-07-10 12:21:47 -0700 | [diff] [blame] | 48 | |
| 49 | include $(BUILD_PACKAGE) |
| 50 | |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 51 | ##################################################################################### |
| 52 | # Build a static library to help mocking various car services in testing |
| 53 | ##################################################################################### |
| 54 | include $(CLEAR_VARS) |
keunyoung | cc449f7 | 2015-08-12 10:46:27 -0700 | [diff] [blame] | 55 | |
Keun-young Park | bae6e25 | 2017-01-25 12:30:15 -0800 | [diff] [blame] | 56 | LOCAL_SRC_FILES := $(car_service_sources) |
Aurimas Liutikas | f17e0e4 | 2017-11-15 09:51:51 -0800 | [diff] [blame] | 57 | |
| 58 | LOCAL_USE_AAPT2 := true |
| 59 | |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 60 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 61 | |
| 62 | LOCAL_MODULE := car-service-lib-for-test |
| 63 | |
Steve Paik | f90fc60 | 2018-01-31 09:57:11 -0800 | [diff] [blame^] | 64 | LOCAL_JAVA_LIBRARIES += android.car \ |
| 65 | car-frameworks-service |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 66 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Steven Moreland | 14f54c5 | 2017-08-02 20:41:36 +0000 | [diff] [blame] | 67 | android.hidl.base-V1.0-java \ |
Scott Randolph | fa50f42 | 2018-01-05 11:53:02 -0800 | [diff] [blame] | 68 | android.hardware.automotive.audiocontrol-V1.0-java \ |
Steven Moreland | 14f54c5 | 2017-08-02 20:41:36 +0000 | [diff] [blame] | 69 | android.hardware.automotive.vehicle-V2.0-java \ |
Enrico Granata | 5c56d2a | 2017-02-07 15:38:12 -0800 | [diff] [blame] | 70 | vehicle-hal-support-lib \ |
Pavel Maltsev | 0d07c76 | 2016-11-03 16:40:15 -0700 | [diff] [blame] | 71 | car-systemtest \ |
Enrico Granata | e23f034 | 2017-10-23 17:17:52 -0700 | [diff] [blame] | 72 | com.android.car.procfsinspector-client \ |
Yao Chen | dacd724 | 2016-01-26 14:42:42 -0800 | [diff] [blame] | 73 | |
| 74 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 75 | |
Keun-young Park | 417b736 | 2016-01-29 14:28:06 -0800 | [diff] [blame] | 76 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 77 | |
Keun-young Park | ec7b18f | 2016-02-29 16:49:53 -0800 | [diff] [blame] | 78 | endif #TARGET_BUILD_PDK |