blob: ce96f114a6e474fa12e334b76d7478b534a7fd24 [file] [log] [blame]
Rakesh Iyer2c939402016-10-19 23:26:02 -07001#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH:= $(call my-dir)
18
19include $(CLEAR_VARS)
20
21LOCAL_SRC_FILES := $(call all-java-files-under, src)
22
23LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
24
25LOCAL_MODULE := car-apps-common
Rakesh Iyer2c147cd2017-03-24 14:10:47 -070026
Rakesh Iyer2c939402016-10-19 23:26:02 -070027LOCAL_MODULE_TAGS := optional
28
29LOCAL_PRIVILEGED_MODULE := true
30
31LOCAL_PROGUARD_ENABLED := disabled
32
Aurimas Liutikas823fb9a2017-11-14 18:27:59 -080033LOCAL_USE_AAPT2 := true
34
Peter Li54c4a5e2019-01-25 16:46:17 -080035LOCAL_JAVA_LIBRARIES += android.car
36
Aurimas Liutikas823fb9a2017-11-14 18:27:59 -080037LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
Rakesh Iyer2c939402016-10-19 23:26:02 -070038
Roberto Perez8144d2e2018-07-03 16:45:59 -070039LOCAL_STATIC_ANDROID_LIBRARIES += \
Arnaud Berry90b7efa2019-03-11 11:11:48 -070040 androidx.annotation_annotation \
41 androidx.cardview_cardview \
42 androidx.interpolator_interpolator \
43 androidx.lifecycle_lifecycle-common-java8 \
44 androidx.lifecycle_lifecycle-extensions \
Jonathan Kooa7c8a0b2019-03-15 10:21:49 -070045 androidx-constraintlayout_constraintlayout \
46 androidx.recyclerview_recyclerview
Roberto Perez8144d2e2018-07-03 16:45:59 -070047
48LOCAL_STATIC_JAVA_LIBRARIES += \
49 androidx-constraintlayout_constraintlayout-solver
50
Rakesh Iyer2c939402016-10-19 23:26:02 -070051include $(BUILD_STATIC_JAVA_LIBRARY)
Yabin Huang8f1ba072019-04-19 11:38:21 -070052
53ifeq (,$(ONE_SHOT_MAKEFILE))
54 include $(call all-makefiles-under,$(LOCAL_PATH))
55endif