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 | |
Kenny Root | d76bc22 | 2013-04-23 22:38:23 -0700 | [diff] [blame] | 4 | LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt telephony-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 | |
| 13 | LOCAL_PACKAGE_NAME := Settings |
| 14 | LOCAL_CERTIFICATE := platform |
Christopher Tate | 992b4fc | 2013-05-10 14:11:05 -0700 | [diff] [blame] | 15 | LOCAL_PRIVILEGED_MODULE := true |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 16 | |
Ying Wang | c845c6d | 2010-09-30 13:23:20 -0700 | [diff] [blame] | 17 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Daisuke Miyakawa | c81adf5 | 2010-08-12 13:04:43 -0700 | [diff] [blame] | 18 | |
Benjamin Poiesz | cbde502 | 2013-04-04 16:14:13 -0700 | [diff] [blame] | 19 | LOCAL_AAPT_FLAGS += -c zz_ZZ |
| 20 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 21 | include $(BUILD_PACKAGE) |
| 22 | |
| 23 | # Use the folloing include to make our test apk. |
| 24 | include $(call all-makefiles-under,$(LOCAL_PATH)) |