aboutsummaryrefslogtreecommitdiff
path: root/manualtest/Android.mk
diff options
context:
space:
mode:
authorKevin Jin <kjin@google.com>2014-10-30 17:45:01 -0700
committerKevin Jin <kjin@google.com>2014-10-30 17:45:01 -0700
commit7eaedea1d7ac9a4103c616a85351599a290df37f (patch)
tree2591bc16a0a67a1fdeb7d7947f76fde42ff7b873 /manualtest/Android.mk
parentb8c4f2e950ab8132196dd644d7cfc892f75a8441 (diff)
downloaddroiddriver-7eaedea1d7ac9a4103c616a85351599a290df37f.tar.gz
add manualtest for DroidDriver
It's a convenient way to reproduce and debug failures without the dependency on real apps. Change-Id: Ib8d84b5f2c501e04cf95205c3943d0baf56346ef
Diffstat (limited to 'manualtest/Android.mk')
-rw-r--r--manualtest/Android.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/manualtest/Android.mk b/manualtest/Android.mk
new file mode 100644
index 0000000..57f9bb2
--- /dev/null
+++ b/manualtest/Android.mk
@@ -0,0 +1,18 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+LOCAL_PACKAGE_NAME := ManualDD
+
+LOCAL_MODULE_TAGS := tests
+
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, src)
+
+LOCAL_STATIC_JAVA_LIBRARIES := \
+ droiddriver
+
+LOCAL_INSTRUMENTATION_FOR := ManualDD
+
+LOCAL_SDK_VERSION := 19
+
+include $(BUILD_PACKAGE)
+