1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4# We only want this apk build for tests. 5LOCAL_MODULE_TAGS := tests 6LOCAL_CERTIFICATE := platform 7 8LOCAL_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 16LOCAL_STATIC_JAVA_LIBRARIES := \ 17 com.android.emailcommon \ 18 android-support-test \ 19 mockito-target \ 20 espresso-intents 21 22# Include all test java files. 23LOCAL_SRC_FILES := $(call all-java-files-under, src) 24 25LOCAL_PACKAGE_NAME := BluetoothInstrumentationTests 26LOCAL_PRIVATE_PLATFORM_APIS := true 27 28LOCAL_COMPATIBILITY_SUITE := device-tests 29 30LOCAL_INSTRUMENTATION_FOR := Bluetooth 31 32include $(BUILD_PACKAGE) 33