Home | History | Annotate | Download | only in Settings
      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_RESOURCE_DIR := $(LOCAL_PATH)/res
     14 
     15 LOCAL_PACKAGE_NAME := Settings
     16 LOCAL_CERTIFICATE := platform
     17 LOCAL_PRIVILEGED_MODULE := true
     18 
     19 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     20 
     21 include frameworks/opt/setupwizard/navigationbar/common.mk
     22 
     23 include $(BUILD_PACKAGE)
     24 
     25 # Use the following include to make our test apk.
     26 ifeq (,$(ONE_SHOT_MAKEFILE))
     27 include $(call all-makefiles-under,$(LOCAL_PATH))
     28 endif
     29