Rodrigo Lagos | bebe58b | 2018-03-03 08:21:46 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2018 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 | |
| 17 | LOCAL_PATH:= $(call my-dir) |
| 18 | |
| 19 | include $(CLEAR_VARS) |
| 20 | |
| 21 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 22 | |
| 23 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 24 | |
| 25 | LOCAL_MODULE := car-settings-lib |
| 26 | LOCAL_MODULE_TAGS := optional |
| 27 | |
| 28 | LOCAL_USE_AAPT2 := true |
| 29 | |
Alan Viverette | 035f837 | 2018-03-23 11:40:09 -0400 | [diff] [blame] | 30 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
davidln | be5d04f | 2019-03-12 12:56:01 -0700 | [diff] [blame] | 31 | androidx.annotation_annotation \ |
| 32 | androidx.loader_loader |
Rodrigo Lagos | bebe58b | 2018-03-03 08:21:46 -0800 | [diff] [blame] | 33 | |
| 34 | LOCAL_PROGUARD_ENABLED := disabled |
| 35 | |
Colin Cross | 73bec23 | 2018-06-15 22:46:53 -0700 | [diff] [blame] | 36 | LOCAL_MIN_SDK_VERSION := 24 |
Rakesh Iyer | 178c0a6 | 2016-10-19 23:35:19 -0700 | [diff] [blame] | 37 | |
Rodrigo Lagos | bebe58b | 2018-03-03 08:21:46 -0800 | [diff] [blame] | 38 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 39 | |
| 40 | # Use the following include to make our test apk. |
| 41 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
| 42 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 43 | endif |