Files
external_piex/Android.mk
Dan Willemsen 593f0ffe59 Fix source file typo
I am changing the build system to catch typos such as these -- it will
soon warn when entries in LOCAL_SRC_FILES are unused. (to compile native
binaries)

Change-Id: Ic95e92a5871dbf2d679b32852a4e8afaaf17e55d
2016-01-25 13:55:54 -08:00

46 lines
1.1 KiB
Makefile

LOCAL_PATH := $(my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libbinary_parse
LOCAL_CPP_EXTENSION := .cc
LOCAL_SRC_FILES:= \
src/binary_parse/cached_paged_byte_array.cc \
src/binary_parse/range_checked_byte_ptr.cc
LOCAL_CPPFALGS := -Wsign-compare
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := libimage_type_recognition
LOCAL_CPP_EXTENSION := .cc
LOCAL_SRC_FILES:= \
src/image_type_recognition/image_type_recognition_lite.cc
LOCAL_SHARED_LIBRARIES := libbinary_parse
LOCAL_CPPFALGS := -Wsign-compare
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := libtiff_directory
LOCAL_CPP_EXTENSION := .cc
LOCAL_SRC_FILES:= \
src/tiff_directory/tiff_directory.cc
LOCAL_SHARED_LIBRARIES := libbinary_parse
LOCAL_CPPFALGS := -Wsign-compare
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := libpiex
LOCAL_CPP_EXTENSION := .cc
LOCAL_SRC_FILES:= \
src/tiff_parser.cc \
src/piex.cc
LOCAL_SHARED_LIBRARIES := \
libbinary_parse \
libimage_type_recognition \
libtiff_directory
LOCAL_CPPFALGS := -Wsign-compare
include $(BUILD_SHARED_LIBRARY)