1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := $(call all-java-files-under, src) 5 6LOCAL_MODULE := droiddriver-android_support_test 7LOCAL_MODULE_TAGS := optional 8LOCAL_SDK_VERSION := 19 9 10LOCAL_JAVACFLAGS += -Xlint:deprecation -Xlint:unchecked 11 12# android-support-test requires /frameworks/testing, /external/junit, /external/hamcrest 13LOCAL_JAVA_LIBRARIES := droiddriver android-support-test 14 15include $(BUILD_STATIC_JAVA_LIBRARY) 16 17include $(CLEAR_VARS) 18 19include $(call all-makefiles-under,$(LOCAL_PATH)) 20