Home | History | Annotate | Download | only in glide
      1 LOCAL_PATH := $(my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := $(call all-java-files-under, library/src)
      5 LOCAL_SRC_FILES += $(call all-java-files-under, third_party/disklrucache/src)
      6 LOCAL_SRC_FILES += $(call all-java-files-under, third_party/gif_decoder/src)
      7 LOCAL_SRC_FILES += $(call all-java-files-under, third_party/gif_encoder/src)
      8 LOCAL_MANIFEST_FILE := library/src/main/AndroidManifest.xml
      9 
     10 LOCAL_STATIC_JAVA_LIBRARIES := volley
     11 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4
     12 
     13 LOCAL_MODULE := glide
     14 LOCAL_MODULE_TAGS := optional
     15 LOCAL_SDK_VERSION := 19
     16 
     17 include $(BUILD_STATIC_JAVA_LIBRARY)
     18 
     19 include $(CLEAR_VARS)
     20