OSDN Git Service

Add content description to suggestion card close button.
[android-x86/packages-apps-Settings.git] / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_SRC_FILES := \
5         $(call all-logtags-files-under, src)
6
7 LOCAL_MODULE := settings-logtags
8
9 include $(BUILD_STATIC_JAVA_LIBRARY)
10
11 # Build the Settings APK
12 include $(CLEAR_VARS)
13
14 LOCAL_PACKAGE_NAME := Settings
15 LOCAL_CERTIFICATE := platform
16 LOCAL_PRIVILEGED_MODULE := true
17 LOCAL_MODULE_TAGS := optional
18 LOCAL_USE_AAPT2 := true
19
20 LOCAL_SRC_FILES := $(call all-java-files-under, src)
21
22 LOCAL_STATIC_ANDROID_LIBRARIES := \
23     android-slices-builders \
24     android-slices-core \
25     android-slices-view \
26     android-support-v4 \
27     android-support-v13 \
28     android-support-v7-appcompat \
29     android-support-v7-cardview \
30     android-support-v7-preference \
31     android-support-v7-recyclerview \
32     android-support-v14-preference \
33
34 LOCAL_JAVA_LIBRARIES := \
35     bouncycastle \
36     telephony-common \
37     ims-common
38
39 LOCAL_STATIC_JAVA_LIBRARIES := \
40     android-arch-lifecycle-runtime \
41     android-arch-lifecycle-extensions \
42     jsr305 \
43     settings-logtags \
44
45 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
46
47 ifneq ($(INCREMENTAL_BUILDS),)
48     LOCAL_PROGUARD_ENABLED := disabled
49     LOCAL_JACK_ENABLED := incremental
50     LOCAL_JACK_FLAGS := --multi-dex native
51 endif
52
53 include frameworks/opt/setupwizard/library/common-gingerbread.mk
54 include frameworks/base/packages/SettingsLib/common.mk
55
56 include $(BUILD_PACKAGE)
57
58 # Use the following include to make our test apk.
59 ifeq (,$(ONE_SHOT_MAKEFILE))
60 include $(call all-makefiles-under,$(LOCAL_PATH))
61 endif