Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | include $(CLEAR_VARS) | ||||
3 | |||||
4 | LOCAL_MODULE_TAGS := optional | ||||
5 | |||||
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 6 | LOCAL_SRC_FILES := $(call all-java-files-under, src) \ |
Chris Wren | 64161cc | 2012-12-17 16:49:30 -0500 | [diff] [blame] | 7 | src/com/android/systemui/EventLogTags.logtags |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 8 | |
John Spurlock | f7abb08 | 2013-06-25 15:09:36 -0400 | [diff] [blame] | 9 | LOCAL_JAVA_LIBRARIES := telephony-common |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 10 | |
Joe Onorato | 79de0c5 | 2010-05-26 17:03:26 -0400 | [diff] [blame] | 11 | LOCAL_PACKAGE_NAME := SystemUI |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 12 | LOCAL_CERTIFICATE := platform |
Christopher Tate | ccbf84f | 2013-05-08 15:25:41 -0700 | [diff] [blame] | 13 | LOCAL_PRIVILEGED_MODULE := true |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 14 | |
Ying Wang | 55ca691 | 2010-09-30 13:20:45 -0700 | [diff] [blame] | 15 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daniel Sandler | 1ab5cae | 2010-08-02 14:52:35 -0400 | [diff] [blame] | 16 | |
Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 17 | include $(BUILD_PACKAGE) |
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 18 | |
19 | include $(call all-makefiles-under,$(LOCAL_PATH)) |