1 LOCAL_PATH:= $(call my-dir) 2 include $(CLEAR_VARS) 3 4 # We only want this apk build for tests. 5 LOCAL_MODULE_TAGS := tests 6 LOCAL_CERTIFICATE := platform 7 8 LOCAL_JAVA_LIBRARIES := \ 9 javax.obex \ 10 android.test.runner \ 11 telephony-common \ 12 libprotobuf-java-micro \ 13 android.test.base \ 14 android.test.mock 15 16 LOCAL_STATIC_JAVA_LIBRARIES := \ 17 com.android.emailcommon \ 18 android-support-test \ 19 mockito-target \ 20 espresso-intents 21 22 # Include all test java files. 23 LOCAL_SRC_FILES := $(call all-java-files-under, src) 24 25 LOCAL_PACKAGE_NAME := BluetoothInstrumentationTests 26 LOCAL_PRIVATE_PLATFORM_APIS := true 27 28 LOCAL_COMPATIBILITY_SUITE := device-tests 29 30 LOCAL_INSTRUMENTATION_FOR := Bluetooth 31 32 include $(BUILD_PACKAGE) 33