summaryrefslogtreecommitdiffstats
path: root/tests/permission/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tests/permission/Android.mk')
-rw-r--r--tests/permission/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/permission/Android.mk b/tests/permission/Android.mk
new file mode 100644
index 00000000..41ceabc2
--- /dev/null
+++ b/tests/permission/Android.mk
@@ -0,0 +1,14 @@
+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 := DownloadProviderPermissionTests
+
+include $(BUILD_PACKAGE)
+