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