blob: bb4e302b75c5a34791acc8993b167720cad9ef96 [file] [log] [blame]
Brett Chabotb525f082011-05-27 17:09:06 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7# Include all test java files.
8LOCAL_SRC_FILES := \
9 $(call all-java-files-under, src)
10
Paul Duffinb8663072017-12-08 00:02:42 +000011LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
12LOCAL_STATIC_JAVA_LIBRARIES := junit
Brett Chabotb525f082011-05-27 17:09:06 -070013LOCAL_PACKAGE_NAME := BluetoothTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000014LOCAL_PRIVATE_PLATFORM_APIS := true
Brett Chabotb525f082011-05-27 17:09:06 -070015LOCAL_CERTIFICATE := platform
16
17include $(BUILD_PACKAGE)
18
19include $(call all-makefiles-under,$(LOCAL_PATH))