summaryrefslogtreecommitdiffstats
path: root/tests_camera
diff options
context:
space:
mode:
Diffstat (limited to 'tests_camera')
-rw-r--r--tests_camera/Android.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests_camera/Android.mk b/tests_camera/Android.mk
new file mode 100644
index 000000000..f39533a71
--- /dev/null
+++ b/tests_camera/Android.mk
@@ -0,0 +1,16 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+# We only want this apk build for tests.
+LOCAL_MODULE_TAGS := tests
+
+LOCAL_SDK_VERSION := 16
+
+# Include all test java files.
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := CameraTests
+
+LOCAL_INSTRUMENTATION_FOR := Gallery2
+
+include $(BUILD_PACKAGE)