summaryrefslogtreecommitdiffstats
path: root/tests/CoreTests/android/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tests/CoreTests/android/Android.mk')
-rw-r--r--tests/CoreTests/android/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/CoreTests/android/Android.mk b/tests/CoreTests/android/Android.mk
new file mode 100644
index 0000000..3b80228
--- /dev/null
+++ b/tests/CoreTests/android/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := eng tests
+
+LOCAL_SRC_FILES := \
+ $(call all-subdir-java-files)
+LOCAL_SRC_FILES += \
+ $(call all-java-files-under, ../com)
+
+LOCAL_JAVA_LIBRARIES := android.test.runner
+
+LOCAL_PACKAGE_NAME := CoreTests
+
+include $(BUILD_PACKAGE)