Home | History | Annotate | Download | only in piex
      1 LOCAL_PATH := $(my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_MODULE := libbinary_parse
      6 LOCAL_CPP_EXTENSION := .cc
      7 LOCAL_SRC_FILES:= \
      8     src/binary_parse/cached_paged_byte_array.cc \
      9     src/binary_parse/range_checked_byte_ptr.cc
     10 LOCAL_CPPFALGS := -Wsign-compare
     11 include $(BUILD_SHARED_LIBRARY)
     12 
     13 include $(CLEAR_VARS)
     14 
     15 LOCAL_MODULE := libimage_type_recognition
     16 LOCAL_CPP_EXTENSION := .cc
     17 LOCAL_SRC_FILES:= \
     18     src/image_type_recognition/image_type_recognition_lite.cc
     19 LOCAL_SHARED_LIBRARIES := libbinary_parse
     20 LOCAL_CPPFALGS := -Wsign-compare
     21 include $(BUILD_SHARED_LIBRARY)
     22 
     23 include $(CLEAR_VARS)
     24 
     25 LOCAL_MODULE := libtiff_directory
     26 LOCAL_CPP_EXTENSION := .cc
     27 LOCAL_SRC_FILES:= \
     28     src/tiff_directory/tiff_directory.cc
     29 LOCAL_SHARED_LIBRARIES := libbinary_parse
     30 LOCAL_CPPFALGS := -Wsign-compare
     31 include $(BUILD_SHARED_LIBRARY)
     32 
     33 include $(CLEAR_VARS)
     34 
     35 LOCAL_MODULE := libpiex
     36 LOCAL_CPP_EXTENSION := .cc
     37 LOCAL_SRC_FILES:= \
     38     src/tiff_parser.cc \
     39     src/piex.cc
     40 LOCAL_SHARED_LIBRARIES := \
     41     libbinary_parse \
     42     libimage_type_recognition \
     43     libtiff_directory
     44 LOCAL_CPPFALGS := -Wsign-compare
     45 include $(BUILD_SHARED_LIBRARY)
     46