OSDN Git Service

InstalledAppDetails: fix refreshing storage summary after force stop
[android-x86/packages-apps-Settings.git] / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt telephony-common ims-common
5 LOCAL_STATIC_JAVA_LIBRARIES := \
6         android-support-v4 \
7         android-support-v13 \
8         jsr305 \
9         org.cyanogenmod.platform.internal \
10         libphonenumber
11
12 LOCAL_MODULE_TAGS := optional
13
14 LOCAL_SRC_FILES := \
15         $(call all-java-files-under, src) \
16         src/com/android/settings/EventLogTags.logtags
17
18 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
19
20 LOCAL_SRC_FILES += \
21         src/com/android/display/IPPService.aidl
22
23 LOCAL_PACKAGE_NAME := Settings
24 LOCAL_CERTIFICATE := platform
25 LOCAL_PRIVILEGED_MODULE := true
26
27 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
28
29 ifneq ($(INCREMENTAL_BUILDS),)
30     LOCAL_PROGUARD_ENABLED := disabled
31     LOCAL_JACK_ENABLED := incremental
32 endif
33
34 include frameworks/opt/setupwizard/navigationbar/common.mk
35 include frameworks/opt/setupwizard/library/common.mk
36 include frameworks/base/packages/SettingsLib/common.mk
37
38 include $(BUILD_PACKAGE)
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