Enable qiifa abi check for gralloc, libqdmetadata and libdisplayconfig libraries as part of enabling QIIFA interface checks for display techpack. Change-Id: I5b5667d58baf0039ccac5faf08f3a3f09d569d29
28 lines
575 B
Plaintext
28 lines
575 B
Plaintext
cc_library_shared {
|
|
name: "libgralloc.qti",
|
|
vendor_available: true,
|
|
system_ext_specific: true,
|
|
cflags: [
|
|
"-Wno-sign-conversion",
|
|
"-DLOG_TAG=\"qtigralloc\"",
|
|
],
|
|
export_include_dirs: ["."],
|
|
header_abi_checker: {
|
|
enabled: true,
|
|
},
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libutils",
|
|
"libgralloctypes",
|
|
"libhidlbase",
|
|
"libhardware",
|
|
"android.hardware.graphics.mapper@4.0",
|
|
],
|
|
|
|
srcs: ["QtiGralloc.cpp"],
|
|
|
|
header_libs: ["display_intf_headers"],
|
|
}
|
|
|