aboutsummaryrefslogtreecommitdiff
path: root/manualtest/Android.mk
diff options
context:
space:
mode:
authorKevin Jin <kjin@google.com>2014-10-31 11:59:08 -0700
committerKevin Jin <kjin@google.com>2014-10-31 13:49:02 -0700
commit0f3126ccd892539e3a7b1df12d0025bbeccd54eb (patch)
tree544571bd1ff1aec50ebf5b7648b1ba067ddde68b /manualtest/Android.mk
parentfd84db8f7411744696b439dfebabb4e3498b6dee (diff)
downloaddroiddriver-0f3126ccd892539e3a7b1df12d0025bbeccd54eb.tar.gz
Revert "Revert "add manualtest for DroidDriver""
Fix the original broken commit: 1) The failure can be reproduced with "m tests" ("m" only passes). 2) It is fixed by remove the LOCAL_INSTRUMENTATION_FOR var. 3) Since the "tests" tag has this side-effect, I replaced it with "optional" in LOCAL_MODULE_TAGS, such that it won't be an implicit target. 4) Disables proguard because it does not have "tests" tag now. This reverts commit fd84db8f7411744696b439dfebabb4e3498b6dee. Change-Id: I74c6e4e85f8d50e771d2875adaf3a6db7d80dae8
Diffstat (limited to 'manualtest/Android.mk')
-rw-r--r--manualtest/Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/manualtest/Android.mk b/manualtest/Android.mk
new file mode 100644
index 0000000..6b52b73
--- /dev/null
+++ b/manualtest/Android.mk
@@ -0,0 +1,17 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+LOCAL_PACKAGE_NAME := ManualDD
+
+LOCAL_MODULE_TAGS := optional
+LOCAL_PROGUARD_ENABLED := disabled
+
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, src)
+
+LOCAL_STATIC_JAVA_LIBRARIES := \
+ droiddriver
+
+LOCAL_SDK_VERSION := 19
+
+include $(BUILD_PACKAGE)
+