mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-13 06:24:27 +02:00
Initial commit
Change-Id: I4712afb3912625e7aaccfa5160dcf78ee252f159
This commit is contained in:
22
Android.mk
Normal file
22
Android.mk
Normal file
@ -0,0 +1,22 @@
|
||||
LOCAL_PATH:= $(call my-dir)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_SRC_FILES := \
|
||||
src/bits.c \
|
||||
src/dsp.c \
|
||||
src/frame.c \
|
||||
src/quant.c \
|
||||
src/tree.c \
|
||||
src/vp8.c \
|
||||
src/webp.c \
|
||||
src/yuv.c
|
||||
|
||||
LOCAL_CFLAGS := -Wall -DANDROID -DHAVE_MALLOC_H -DHAVE_PTHREAD \
|
||||
-finline-functions -frename-registers -ffast-math \
|
||||
-s -fomit-frame-pointer -std=gnu99
|
||||
|
||||
LOCAL_C_INCLUDES += $(LOCAL_PATH)/src
|
||||
|
||||
LOCAL_MODULE:= webp-decode
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
Reference in New Issue
Block a user