blob: 9ab7df3633f94293fd9d89ce070b73d4547afa54 [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
Keun-young Parke54ac272016-02-16 19:02:18 -080042LOCAL_JAVA_LIBRARIES += android.car
Pavel Maltsev0d07c762016-11-03 16:40:15 -070043LOCAL_STATIC_JAVA_LIBRARIES += \
Steven Moreland14f54c52017-08-02 20:41:36 +000044 android.hidl.base-V1.0-java \
Scott Randolphfa50f422018-01-05 11:53:02 -080045 android.hardware.automotive.audiocontrol-V1.0-java \
Steven Moreland14f54c52017-08-02 20:41:36 +000046 android.hardware.automotive.vehicle-V2.0-java \
Enrico Granata5c56d2a2017-02-07 15:38:12 -080047 vehicle-hal-support-lib \
Steve Paikf90fc602018-01-31 09:57:11 -080048 car-frameworks-service \
Pavel Maltsev0d07c762016-11-03 16:40:15 -070049 car-systemtest \
Enrico Granatae23f0342017-10-23 17:17:52 -070050 com.android.car.procfsinspector-client \
keunyoungca515072015-07-10 12:21:47 -070051
Steve Paik7d813f82018-06-20 12:35:23 -070052include frameworks/base/packages/SettingsLib/common.mk
53
keunyoungca515072015-07-10 12:21:47 -070054include $(BUILD_PACKAGE)
55
Yao Chendacd7242016-01-26 14:42:42 -080056#####################################################################################
57# Build a static library to help mocking various car services in testing
58#####################################################################################
59include $(CLEAR_VARS)
keunyoungcc449f72015-08-12 10:46:27 -070060
Keun-young Parkbae6e252017-01-25 12:30:15 -080061LOCAL_SRC_FILES := $(car_service_sources)
Aurimas Liutikasf17e0e42017-11-15 09:51:51 -080062
63LOCAL_USE_AAPT2 := true
64
Yao Chendacd7242016-01-26 14:42:42 -080065LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
66
67LOCAL_MODULE := car-service-lib-for-test
68
Steve Paikf90fc602018-01-31 09:57:11 -080069LOCAL_JAVA_LIBRARIES += android.car \
70 car-frameworks-service
Pavel Maltsev0d07c762016-11-03 16:40:15 -070071LOCAL_STATIC_JAVA_LIBRARIES += \
Steven Moreland14f54c52017-08-02 20:41:36 +000072 android.hidl.base-V1.0-java \
Scott Randolphfa50f422018-01-05 11:53:02 -080073 android.hardware.automotive.audiocontrol-V1.0-java \
Steven Moreland14f54c52017-08-02 20:41:36 +000074 android.hardware.automotive.vehicle-V2.0-java \
Enrico Granata5c56d2a2017-02-07 15:38:12 -080075 vehicle-hal-support-lib \
Pavel Maltsev0d07c762016-11-03 16:40:15 -070076 car-systemtest \
Enrico Granatae23f0342017-10-23 17:17:52 -070077 com.android.car.procfsinspector-client \
Yao Chendacd7242016-01-26 14:42:42 -080078
Colin Cross4543e612018-06-14 15:57:30 -070079LOCAL_MIN_SDK_VERSION := 25
80
Steve Paik7d813f82018-06-20 12:35:23 -070081include frameworks/base/packages/SettingsLib/common.mk
82
Yao Chendacd7242016-01-26 14:42:42 -080083include $(BUILD_STATIC_JAVA_LIBRARY)
84
Keun-young Park417b7362016-01-29 14:28:06 -080085include $(call all-makefiles-under,$(LOCAL_PATH))
86
Keun-young Parkec7b18f2016-02-29 16:49:53 -080087endif #TARGET_BUILD_PDK