1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4# We only want this apk build for tests. 5LOCAL_MODULE_TAGS := tests 6 7LOCAL_STATIC_JAVA_LIBRARIES := \ 8 ContactsProviderTestUtils \ 9 android-support-test \ 10 mockito-target-minus-junit4 \ 11 legacy-android-test 12 13LOCAL_JAVA_LIBRARIES := android.test.runner 14 15# Only compile source java files in this apk. 16LOCAL_SRC_FILES := $(call all-java-files-under, src) 17 18LOCAL_PACKAGE_NAME := ContactsProviderTests 19LOCAL_COMPATIBILITY_SUITE := device-tests 20 21LOCAL_INSTRUMENTATION_FOR := ContactsProvider 22LOCAL_CERTIFICATE := shared 23 24LOCAL_PROGUARD_ENABLED := disabled 25 26include $(BUILD_PACKAGE) 27