1 2LOCAL_PATH := $(call my-dir) 3include $(CLEAR_VARS) 4 5LOCAL_MODULE_TAGS := tests 6 7LOCAL_SRC_FILES := $(call all-java-files-under, src) 8 9LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base android.test.mock 10 11LOCAL_STATIC_JAVA_LIBRARIES := \ 12 android-support-test \ 13 mockito-target-minus-junit4 \ 14 ub-uiautomator \ 15 junit \ 16 17LOCAL_PACKAGE_NAME := ShellTests 18LOCAL_PRIVATE_PLATFORM_APIS := true 19LOCAL_COMPATIBILITY_SUITE := device-tests 20LOCAL_INSTRUMENTATION_FOR := Shell 21 22LOCAL_CERTIFICATE := platform 23 24include $(BUILD_PACKAGE) 25