aboutsummaryrefslogtreecommitdiff
path: root/droiddriver-android_support_test/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'droiddriver-android_support_test/Android.mk')
-rw-r--r--droiddriver-android_support_test/Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/droiddriver-android_support_test/Android.mk b/droiddriver-android_support_test/Android.mk
new file mode 100644
index 0000000..22c6c0a
--- /dev/null
+++ b/droiddriver-android_support_test/Android.mk
@@ -0,0 +1,19 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_MODULE := droiddriver-android_support_test
+LOCAL_MODULE_TAGS := optional
+LOCAL_SDK_VERSION := 19
+
+LOCAL_JAVACFLAGS += -Xlint:deprecation -Xlint:unchecked
+
+# android-support-test requires /frameworks/testing, /external/junit, /external/hamcrest
+LOCAL_JAVA_LIBRARIES := droiddriver android-support-test
+
+include $(BUILD_STATIC_JAVA_LIBRARY)
+
+include $(CLEAR_VARS)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))