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 androidx.test.rules \ 13 androidx.annotation_annotation \ 14 apct-perftests-utils \ 15 guava 16 17LOCAL_JAVA_LIBRARIES := android.test.base 18 19LOCAL_PACKAGE_NAME := CorePerfTests 20LOCAL_PRIVATE_PLATFORM_APIS := true 21 22LOCAL_JNI_SHARED_LIBRARIES := libperftestscore_jni 23 24# Use google-fonts/dancing-script for the performance metrics 25LOCAL_ASSET_DIR := $(TOP)/external/google-fonts/dancing-script 26 27LOCAL_COMPATIBILITY_SUITE += device-tests 28 29include $(BUILD_PACKAGE) 30