OSDN Git Service

Automatic translation import
[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
11 LOCAL_MODULE_TAGS := optional
12
13 LOCAL_SRC_FILES := \
14         $(call all-java-files-under, src) \
15         src/com/android/settings/EventLogTags.logtags
16
17 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
18
19 LOCAL_SRC_FILES += \
20         src/com/android/display/IPPService.aidl
21
22 LOCAL_PACKAGE_NAME := Settings
23 LOCAL_CERTIFICATE := platform
24 LOCAL_PRIVILEGED_MODULE := true
25
26 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
27
28 ifneq ($(INCREMENTAL_BUILDS),)
29     LOCAL_PROGUARD_ENABLED := disabled
30     LOCAL_JACK_ENABLED := incremental
31 endif
32
33 include frameworks/opt/setupwizard/navigationbar/common.mk
34 include frameworks/opt/setupwizard/library/common.mk
35 include frameworks/base/packages/SettingsLib/common.mk
36
37 include $(BUILD_PACKAGE)
38
39 # Use the following include to make our test apk.
40 ifeq (,$(ONE_SHOT_MAKEFILE))
41 include $(call all-makefiles-under,$(LOCAL_PATH))
42 endif