blob: e18a696978d20efc737e5e0f50d37d80a958bac8 [file] [log] [blame]
Kim Schulz70be0052013-08-22 10:57:59 +02001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
Guang Zhuce0e5032013-09-13 19:30:57 -07005LOCAL_MODULE_TAGS := optional
Kim Schulz70be0052013-08-22 10:57:59 +02006LOCAL_CERTIFICATE := platform
7
Tony Mak4eadc322015-04-23 12:05:14 +01008LOCAL_JAVA_LIBRARIES := javax.obex android.test.runner telephony-common libprotobuf-java-micro
Victor Chang9de20f82015-04-23 21:20:59 +01009LOCAL_STATIC_JAVA_LIBRARIES := com.android.emailcommon littlemock dexmaker
Kim Schulz70be0052013-08-22 10:57:59 +020010
11# Include all test java files.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
Casper Bonde326b5e62014-07-24 13:47:23 +020013# LOCAL_SRC_FILES := src/com/android/bluetooth/tests/BluetoothMapContentTest.java
Kim Schulz70be0052013-08-22 10:57:59 +020014
15LOCAL_PACKAGE_NAME := BluetoothProfileTests
16
17LOCAL_INSTRUMENTATION_FOR := Bluetooth
18
Tony Mak4eadc322015-04-23 12:05:14 +010019include $(BUILD_PACKAGE)