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 | |
Andrew Sapperstein | 867bb9c | 2016-04-11 13:58:07 -0700 | [diff] [blame] | 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 | |
Adam Lesinski | 701af87 | 2016-08-16 15:59:14 -0700 | [diff] [blame] | 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 := \ |
Matthew Fritze | b277557 | 2017-12-05 10:46:47 -0800 | [diff] [blame] | 23 | android-slices-builders \ |
| 24 | android-slices-core \ |
| 25 | android-slices-view \ |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 26 | android-support-v4 \ |
| 27 | android-support-v13 \ |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame] | 28 | android-support-v7-appcompat \ |
Andrew Sapperstein | 048f6fb | 2017-05-28 12:20:10 -0700 | [diff] [blame] | 29 | android-support-v7-cardview \ |
| 30 | android-support-v7-preference \ |
| 31 | android-support-v7-recyclerview \ |
Matthew Fritze | b277557 | 2017-12-05 10:46:47 -0800 | [diff] [blame] | 32 | android-support-v14-preference \ |
Adam Lesinski | 701af87 | 2016-08-16 15:59:14 -0700 | [diff] [blame] | 33 | |
| 34 | LOCAL_JAVA_LIBRARIES := \ |
| 35 | bouncycastle \ |
Adam Lesinski | 701af87 | 2016-08-16 15:59:14 -0700 | [diff] [blame] | 36 | telephony-common \ |
| 37 | ims-common |
| 38 | |
| 39 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Aurimas Liutikas | 0fbf8d8 | 2018-01-26 22:51:18 +0000 | [diff] [blame] | 40 | android-arch-lifecycle-runtime \ |
| 41 | android-arch-lifecycle-extensions \ |
Andrew Sapperstein | 867bb9c | 2016-04-11 13:58:07 -0700 | [diff] [blame] | 42 | jsr305 \ |
Matthew Fritze | b277557 | 2017-12-05 10:46:47 -0800 | [diff] [blame] | 43 | settings-logtags \ |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 44 | |
Ying Wang | c845c6d | 2010-09-30 13:23:20 -0700 | [diff] [blame] | 45 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daisuke Miyakawa | c81adf5 | 2010-08-12 13:04:43 -0700 | [diff] [blame] | 46 | |
Jorim Jaggi | c9f7380 | 2015-04-24 11:12:20 -0700 | [diff] [blame] | 47 | ifneq ($(INCREMENTAL_BUILDS),) |
| 48 | LOCAL_PROGUARD_ENABLED := disabled |
| 49 | LOCAL_JACK_ENABLED := incremental |
Jorim Jaggi | 75b22c6 | 2016-01-28 20:06:32 -0800 | [diff] [blame] | 50 | LOCAL_JACK_FLAGS := --multi-dex native |
Jorim Jaggi | c9f7380 | 2015-04-24 11:12:20 -0700 | [diff] [blame] | 51 | endif |
| 52 | |
Maurice Lam | 62478b9 | 2016-12-16 14:11:02 -0800 | [diff] [blame] | 53 | include frameworks/opt/setupwizard/library/common-gingerbread.mk |
Jason Monk | f15248b | 2015-01-13 10:05:53 -0500 | [diff] [blame] | 54 | include frameworks/base/packages/SettingsLib/common.mk |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 55 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 56 | include $(BUILD_PACKAGE) |
| 57 | |
Maurice Lam | 6776c67 | 2014-06-05 19:15:20 -0700 | [diff] [blame] | 58 | # Use the following include to make our test apk. |
Amith Yamasani | 0dd03eb | 2014-05-20 17:37:44 -0700 | [diff] [blame] | 59 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 60 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
Amith Yamasani | 0dd03eb | 2014-05-20 17:37:44 -0700 | [diff] [blame] | 61 | endif |