mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
Android.mk: add a dwebp target
Change-Id: Ic697660c1a5f7185d2ad00934b314b44870cec00
This commit is contained in:
parent
f910a84ea5
commit
5b2e6bd3e8
31
Android.mk
31
Android.mk
@ -1,6 +1,13 @@
|
|||||||
LOCAL_PATH:= $(call my-dir)
|
LOCAL_PATH := $(call my-dir)
|
||||||
|
|
||||||
|
WEBP_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD -DWEBP_USE_THREAD
|
||||||
|
|
||||||
|
ifeq ($(APP_OPTIM),release)
|
||||||
|
WEBP_CFLAGS += -finline-functions -frename-registers -ffast-math -s
|
||||||
|
endif
|
||||||
|
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_SRC_FILES := \
|
LOCAL_SRC_FILES := \
|
||||||
src/dec/alpha.c \
|
src/dec/alpha.c \
|
||||||
src/dec/buffer.c \
|
src/dec/buffer.c \
|
||||||
@ -52,13 +59,7 @@ LOCAL_SRC_FILES := \
|
|||||||
src/utils/thread.c \
|
src/utils/thread.c \
|
||||||
src/utils/utils.c \
|
src/utils/utils.c \
|
||||||
|
|
||||||
LOCAL_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD \
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
||||||
-DWEBP_USE_THREAD \
|
|
||||||
|
|
||||||
ifeq ($(APP_OPTIM),release)
|
|
||||||
LOCAL_CFLAGS += -finline-functions -frename-registers -ffast-math -s
|
|
||||||
endif
|
|
||||||
|
|
||||||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
|
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
|
||||||
|
|
||||||
# prefer arm over thumb mode for performance gains
|
# prefer arm over thumb mode for performance gains
|
||||||
@ -78,4 +79,18 @@ LOCAL_MODULE := webp
|
|||||||
|
|
||||||
include $(BUILD_STATIC_LIBRARY)
|
include $(BUILD_STATIC_LIBRARY)
|
||||||
|
|
||||||
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
|
LOCAL_SRC_FILES := \
|
||||||
|
examples/dwebp.c \
|
||||||
|
examples/example_util.c \
|
||||||
|
|
||||||
|
LOCAL_CFLAGS := $(WEBP_CFLAGS)
|
||||||
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/src
|
||||||
|
LOCAL_STATIC_LIBRARIES := webp
|
||||||
|
|
||||||
|
LOCAL_MODULE := dwebp
|
||||||
|
|
||||||
|
include $(BUILD_EXECUTABLE)
|
||||||
|
|
||||||
$(call import-module,android/cpufeatures)
|
$(call import-module,android/cpufeatures)
|
||||||
|
Loading…
Reference in New Issue
Block a user