Home | History | Annotate | Download | only in Traceur
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_PACKAGE_NAME := Traceur
      6 LOCAL_PRIVATE_PLATFORM_APIS := true
      7 LOCAL_CERTIFICATE := platform
      8 LOCAL_USE_AAPT2 := true
      9 
     10 LOCAL_STATIC_ANDROID_LIBRARIES := \
     11     android-support-v17-leanback \
     12     android-support-v14-preference \
     13     android-support-v7-appcompat \
     14     android-support-v7-preference \
     15     android-support-v7-recyclerview \
     16     android-support-v4
     17 
     18 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
     19 LOCAL_SRC_FILES := $(call all-java-files-under, src)
     20 
     21 include frameworks/base/packages/SettingsLib/common.mk
     22 
     23 include $(BUILD_PACKAGE)
     24 
     25 # Use the following include to make our test apk.
     26 include $(call all-makefiles-under,$(LOCAL_PATH))
     27