1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt telephony-common 5 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 android-support-v13 jsr305 6 7 LOCAL_MODULE_TAGS := optional 8 9 LOCAL_SRC_FILES := \ 10 $(call all-java-files-under, src) \ 11 src/com/android/settings/EventLogTags.logtags 12 13 LOCAL_PACKAGE_NAME := Settings 14 LOCAL_CERTIFICATE := platform 15 LOCAL_PRIVILEGED_MODULE := true 16 17 LOCAL_PROGUARD_FLAG_FILES := proguard.flags 18 19 LOCAL_AAPT_FLAGS += -c zz_ZZ 20 21 include $(BUILD_PACKAGE) 22 23 # Use the folloing include to make our test apk. 24 include $(call all-makefiles-under,$(LOCAL_PATH)) 25