Home | History | Annotate | Download | only in droiddriver
      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
      7 LOCAL_MODULE_TAGS := optional
      8 LOCAL_SDK_VERSION := 19
      9 
     10 LOCAL_JAVACFLAGS += -Xlint:deprecation -Xlint:unchecked
     11 
     12 include $(BUILD_STATIC_JAVA_LIBRARY)
     13 
     14 include $(CLEAR_VARS)
     15 
     16 include $(call all-makefiles-under,$(LOCAL_PATH))
     17