mirror of
https://github.com/Evolution-X/external_piex
synced 2026-01-27 16:24:09 +00:00
libpiex is already vendor_available but its dependencies are not. Marking them as vendor_available since a vendor_available lib cannot link against to non vendor_available libs. Bug: 33241851 Test: BOARD_VNDK_VERSION=current m -j libpiex.vendor Change-Id: I9c33eb95023519f3df6cbe15df68ac864d213ae9
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
cc_library_static {
|
|
name: "libbinary_parse",
|
|
vendor_available: true,
|
|
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",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"src/image_type_recognition/image_type_recognition_lite.cc",
|
|
],
|
|
static_libs: ["libbinary_parse"],
|
|
cppflags: ["-Wsign-compare"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libtiff_directory",
|
|
vendor_available: true,
|
|
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"],
|
|
}
|