Home | History | Annotate | Download | only in PhotoEditor
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_MODULE_TAGS := optional
      6 
      7 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      8 
      9 LOCAL_PACKAGE_NAME := PhotoEditor
     10 
     11 LOCAL_JNI_SHARED_LIBRARIES := libjni_photoeditor
     12 
     13 LOCAL_REQUIRED_MODULES := libjni_photoeditor
     14 
     15 LOCAL_SDK_VERSION := 11
     16 
     17 include $(BUILD_PACKAGE)
     18 
     19 ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
     20 include $(call all-makefiles-under, $(LOCAL_PATH))
     21 endif
     22