summaryrefslogtreecommitdiffstats
path: root/core/tests/bluetoothtests/Android.mk
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@android.com>2011-05-27 17:09:06 -0700
committerBrett Chabot <brettchabot@android.com>2011-06-01 16:04:30 -0700
commitb525f089cf0f580ccb26e80bbb0db1376ba554cc (patch)
tree7751d22496b77f9e59b5ed09be939de3c85db4dc /core/tests/bluetoothtests/Android.mk
parent73e0bc805a143d8cc2202fccb73230459edc6869 (diff)
downloadframeworks_base-b525f089cf0f580ccb26e80bbb0db1376ba554cc.zip
frameworks_base-b525f089cf0f580ccb26e80bbb0db1376ba554cc.tar.gz
frameworks_base-b525f089cf0f580ccb26e80bbb0db1376ba554cc.tar.bz2
Move bluetooth tests to their own package.
Bug 4501764 Change-Id: Id65de5d96516720e75dfbb5d522f465187e73913
Diffstat (limited to 'core/tests/bluetoothtests/Android.mk')
-rw-r--r--core/tests/bluetoothtests/Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/tests/bluetoothtests/Android.mk b/core/tests/bluetoothtests/Android.mk
new file mode 100644
index 0000000..4a1d18c
--- /dev/null
+++ b/core/tests/bluetoothtests/Android.mk
@@ -0,0 +1,17 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# We only want this apk build for tests.
+LOCAL_MODULE_TAGS := tests
+
+# Include all test java files.
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, src)
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+LOCAL_PACKAGE_NAME := BluetoothTests
+LOCAL_CERTIFICATE := platform
+
+include $(BUILD_PACKAGE)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))