Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
Adrian Roos | 4cc2a58 | 2016-02-25 09:28:13 -0800 | [diff] [blame^] | 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE := SystemUI-proto-tags |
| 6 | |
| 7 | LOCAL_SRC_FILES := $(call all-proto-files-under,src) \ |
| 8 | src/com/android/systemui/EventLogTags.logtags |
| 9 | |
| 10 | LOCAL_PROTOC_OPTIMIZE_TYPE := nano |
| 11 | LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors |
| 12 | |
| 13 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 14 | |
| 15 | # ------------------ |
| 16 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 17 | include $(CLEAR_VARS) |
| 18 | |
| 19 | LOCAL_MODULE_TAGS := optional |
| 20 | |
Adrian Roos | 4cc2a58 | 2016-02-25 09:28:13 -0800 | [diff] [blame^] | 21 | LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-Iaidl-files-under, src) |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 22 | |
Winson | c29ff00 | 2015-11-20 16:00:45 -0800 | [diff] [blame] | 23 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 24 | Keyguard \ |
Jason Monk | 87ccd55 | 2015-12-11 21:39:54 -0500 | [diff] [blame] | 25 | android-support-v7-recyclerview \ |
| 26 | android-support-v7-preference \ |
| 27 | android-support-v7-appcompat \ |
Chris Wren | 77781d3 | 2016-01-11 14:49:26 -0500 | [diff] [blame] | 28 | android-support-v14-preference \ |
Sid Soundararajan | b58c46a | 2016-01-26 15:39:27 -0800 | [diff] [blame] | 29 | android-support-v17-leanback \ |
Adrian Roos | 4cc2a58 | 2016-02-25 09:28:13 -0800 | [diff] [blame^] | 30 | framework-protos \ |
| 31 | SystemUI-proto-tags |
Jason Monk | 87ccd55 | 2015-12-11 21:39:54 -0500 | [diff] [blame] | 32 | |
John Spurlock | f7abb08 | 2013-06-25 15:09:36 -0400 | [diff] [blame] | 33 | LOCAL_JAVA_LIBRARIES := telephony-common |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 34 | |
Joe Onorato | 79de0c5 | 2010-05-26 17:03:26 -0400 | [diff] [blame] | 35 | LOCAL_PACKAGE_NAME := SystemUI |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 36 | LOCAL_CERTIFICATE := platform |
Christopher Tate | ccbf84f | 2013-05-08 15:25:41 -0700 | [diff] [blame] | 37 | LOCAL_PRIVILEGED_MODULE := true |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 38 | |
Ying Wang | 55ca691 | 2010-09-30 13:20:45 -0700 | [diff] [blame] | 39 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daniel Sandler | 1ab5cae | 2010-08-02 14:52:35 -0400 | [diff] [blame] | 40 | |
Jorim Jaggi | 380ecb8 | 2014-03-14 17:25:20 +0100 | [diff] [blame] | 41 | LOCAL_RESOURCE_DIR := \ |
| 42 | frameworks/base/packages/Keyguard/res \ |
Ying Wang | 471c1adf | 2015-12-04 18:35:54 -0800 | [diff] [blame] | 43 | $(LOCAL_PATH)/res \ |
Jason Monk | 87ccd55 | 2015-12-11 21:39:54 -0500 | [diff] [blame] | 44 | frameworks/support/v7/preference/res \ |
| 45 | frameworks/support/v14/preference/res \ |
| 46 | frameworks/support/v7/appcompat/res \ |
Sid Soundararajan | b58c46a | 2016-01-26 15:39:27 -0800 | [diff] [blame] | 47 | frameworks/support/v7/recyclerview/res \ |
| 48 | frameworks/support/v17/leanback/res |
Ying Wang | 471c1adf | 2015-12-04 18:35:54 -0800 | [diff] [blame] | 49 | |
| 50 | LOCAL_AAPT_FLAGS := --auto-add-overlay \ |
Sid Soundararajan | b58c46a | 2016-01-26 15:39:27 -0800 | [diff] [blame] | 51 | --extra-packages com.android.keyguard:android.support.v7.recyclerview:android.support.v7.preference:android.support.v14.preference:android.support.v7.appcompat \ |
| 52 | --extra-packages android.support.v17.leanback |
Jorim Jaggi | 380ecb8 | 2014-03-14 17:25:20 +0100 | [diff] [blame] | 53 | |
Jorim Jaggi | 3557e0eb | 2015-04-10 10:48:58 -0700 | [diff] [blame] | 54 | ifneq ($(SYSTEM_UI_INCREMENTAL_BUILDS),) |
| 55 | LOCAL_PROGUARD_ENABLED := disabled |
| 56 | LOCAL_JACK_ENABLED := incremental |
| 57 | endif |
| 58 | |
Jason Monk | 2ba4ce6 | 2015-01-13 10:08:23 -0500 | [diff] [blame] | 59 | include frameworks/base/packages/SettingsLib/common.mk |
| 60 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 61 | include $(BUILD_PACKAGE) |
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 62 | |
Jorim Jaggi | fb0d644 | 2015-01-20 16:41:01 +0100 | [diff] [blame] | 63 | ifeq ($(EXCLUDE_SYSTEMUI_TESTS),) |
| 64 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 65 | endif |