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 android.test.runner \
10    telephony-common \
11    libprotobuf-java-micro
12
13LOCAL_STATIC_JAVA_LIBRARIES :=  \
14    com.android.emailcommon \
15    android-support-test \
16    mockito-target \
17    legacy-android-test
18
19# Include all test java files.
20LOCAL_SRC_FILES := $(call all-java-files-under, src)
21# LOCAL_SRC_FILES := src/com/android/bluetooth/tests/BluetoothMapContentTest.java
22
23LOCAL_PACKAGE_NAME := BluetoothProfileTests
24
25LOCAL_INSTRUMENTATION_FOR := Bluetooth
26
27include $(BUILD_PACKAGE)
28