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