1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := tests 5 6LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 7LOCAL_SRC_FILES := \ 8 $(call all-java-files-under, src) \ 9 src/android/os/ISomeService.aidl 10 11LOCAL_STATIC_JAVA_LIBRARIES := \ 12 android-support-test \ 13 apct-perftests-utils \ 14 guava 15 16LOCAL_JAVA_LIBRARIES := android.test.base 17 18LOCAL_PACKAGE_NAME := CorePerfTests 19LOCAL_PRIVATE_PLATFORM_APIS := true 20 21LOCAL_JNI_SHARED_LIBRARIES := libperftestscore_jni 22 23# Use google-fonts/dancing-script for the performance metrics 24LOCAL_ASSET_DIR := $(TOP)/external/google-fonts/dancing-script 25 26LOCAL_COMPATIBILITY_SUITE += device-tests 27 28include $(BUILD_PACKAGE) 29 30include $(call all-makefiles-under, $(LOCAL_PATH)) 31