mirror of
https://github.com/Evolution-X/external_piex
synced 2026-01-27 16:24:09 +00:00
libpiex belongs to vndk-cap. Mark it vendor_available to enable vndk abi stability checks on it. Details: https://android-review.googlesource.com/368372 Test: mm -j64 Bug: 38244611 Change-Id: I33f9c4bf15a33d5792cbe617420a1c48baf492e6
43 lines
957 B
Plaintext
43 lines
957 B
Plaintext
cc_library_static {
|
|
name: "libbinary_parse",
|
|
srcs: [
|
|
"src/binary_parse/cached_paged_byte_array.cc",
|
|
"src/binary_parse/range_checked_byte_ptr.cc",
|
|
],
|
|
cppflags: ["-Wsign-compare"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libimage_type_recognition",
|
|
srcs: [
|
|
"src/image_type_recognition/image_type_recognition_lite.cc",
|
|
],
|
|
static_libs: ["libbinary_parse"],
|
|
cppflags: ["-Wsign-compare"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libtiff_directory",
|
|
srcs: [
|
|
"src/tiff_directory/tiff_directory.cc",
|
|
],
|
|
static_libs: ["libbinary_parse"],
|
|
cppflags: ["-Wsign-compare"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libpiex",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"src/tiff_parser.cc",
|
|
"src/piex.cc",
|
|
],
|
|
export_include_dirs: ["."],
|
|
static_libs: [
|
|
"libbinary_parse",
|
|
"libimage_type_recognition",
|
|
"libtiff_directory",
|
|
],
|
|
cppflags: ["-Wsign-compare"],
|
|
}
|