1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_PACKAGE_NAME := Traceur 6LOCAL_PRIVATE_PLATFORM_APIS := true 7LOCAL_CERTIFICATE := platform 8LOCAL_USE_AAPT2 := true 9 10LOCAL_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 18LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 19LOCAL_SRC_FILES := $(call all-java-files-under, src) 20 21include frameworks/base/packages/SettingsLib/common.mk 22 23include $(BUILD_PACKAGE) 24 25# Use the following include to make our test apk. 26include $(call all-makefiles-under,$(LOCAL_PATH)) 27