blob: 023e0c0031d2600c43d444b71e7c877eb48b1325 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Kenny Rootd76bc222013-04-23 22:38:23 -07004LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt telephony-common
Jeff Sharkeye6c50032013-03-06 11:46:54 -08005LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v13 jsr305
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07006
Jean-Baptiste Querucb526ca2010-01-05 16:27:26 -08007LOCAL_MODULE_TAGS := optional
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08008
rich cannings27d6f8d2013-05-29 14:54:58 -07009LOCAL_SRC_FILES := \
10 $(call all-java-files-under, src) \
11 src/com/android/settings/EventLogTags.logtags
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080012
13LOCAL_PACKAGE_NAME := Settings
14LOCAL_CERTIFICATE := platform
Christopher Tate992b4fc2013-05-10 14:11:05 -070015LOCAL_PRIVILEGED_MODULE := true
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080016
Ying Wangc845c6d2010-09-30 13:23:20 -070017LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Daisuke Miyakawac81adf52010-08-12 13:04:43 -070018
Benjamin Poieszcbde5022013-04-04 16:14:13 -070019LOCAL_AAPT_FLAGS += -c zz_ZZ
20
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080021include $(BUILD_PACKAGE)
22
23# Use the folloing include to make our test apk.
Amith Yamasani0dd03eb2014-05-20 17:37:44 -070024ifeq (,$(ONE_SHOT_MAKEFILE))
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080025include $(call all-makefiles-under,$(LOCAL_PATH))
Amith Yamasani0dd03eb2014-05-20 17:37:44 -070026endif