31 lines
918 B
Makefile
31 lines
918 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE:= libpdfiumfpdftext
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
LOCAL_NDK_STL_VARIANT := gnustl_static
|
|
|
|
LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays -fexceptions
|
|
LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall -DOPJ_STATIC \
|
|
-DV8_DEPRECATION_WARNINGS -D_CRT_SECURE_NO_WARNINGS
|
|
|
|
# Mask some warnings. These are benign, but we probably want to fix them
|
|
# upstream at some point.
|
|
LOCAL_CFLAGS += -Wno-sign-compare -Wno-unused-parameter
|
|
LOCAL_CLANG_CFLAGS += -Wno-sign-compare
|
|
|
|
LOCAL_SRC_FILES := \
|
|
src/fpdftext/fpdf_text.cpp \
|
|
src/fpdftext/fpdf_text_int.cpp \
|
|
src/fpdftext/fpdf_text_search.cpp \
|
|
src/fpdftext/unicodenormalization.cpp \
|
|
src/fpdftext/unicodenormalizationdata.cpp \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
external/pdfium \
|
|
external/freetype/include \
|
|
external/freetype/include/freetype
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|