The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Pavel Zhamaitsiak | cb267a6 | 2015-01-21 18:25:14 -0800 | [diff] [blame] | 4 | LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt telephony-common ims-common |
Jeff Sharkey | e6c5003 | 2013-03-06 11:46:54 -0800 | [diff] [blame] | 5 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v13 jsr305 |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 6 | |
Jean-Baptiste Queru | cb526ca | 2010-01-05 16:27:26 -0800 | [diff] [blame] | 7 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | |
rich cannings | 27d6f8d | 2013-05-29 14:54:58 -0700 | [diff] [blame] | 9 | LOCAL_SRC_FILES := \ |
| 10 | $(call all-java-files-under, src) \ |
| 11 | src/com/android/settings/EventLogTags.logtags |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 12 | |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 13 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 14 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 15 | LOCAL_PACKAGE_NAME := Settings |
| 16 | LOCAL_CERTIFICATE := platform |
Christopher Tate | 992b4fc | 2013-05-10 14:11:05 -0700 | [diff] [blame] | 17 | LOCAL_PRIVILEGED_MODULE := true |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 18 | |
Ying Wang | c845c6d | 2010-09-30 13:23:20 -0700 | [diff] [blame] | 19 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daisuke Miyakawa | c81adf5 | 2010-08-12 13:04:43 -0700 | [diff] [blame] | 20 | |
Jorim Jaggi | 11eae04 | 2015-04-24 11:12:20 -0700 | [diff] [blame] | 21 | ifneq ($(INCREMENTAL_BUILDS),) |
| 22 | LOCAL_PROGUARD_ENABLED := disabled |
| 23 | LOCAL_JACK_ENABLED := incremental |
| 24 | endif |
| 25 | |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 26 | include frameworks/opt/setupwizard/navigationbar/common.mk |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 27 | include frameworks/opt/setupwizard/library/common.mk |
Jason Monk | f15248b | 2015-01-13 10:05:53 -0500 | [diff] [blame] | 28 | include frameworks/base/packages/SettingsLib/common.mk |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 29 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 30 | include $(BUILD_PACKAGE) |
| 31 | |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 32 | # Use the following include to make our test apk. |
Amith Yamasani | 0dd03eb | 2014-05-20 17:37:44 -0700 | [diff] [blame] | 33 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 34 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
Amith Yamasani | 0dd03eb | 2014-05-20 17:37:44 -0700 | [diff] [blame] | 35 | endif |