This change adds libgralloc.qti to support Gralloc4 and the transition to standardized metadata. CRs-Fixed: 2619182 Change-Id: Ia43de9b1dc9da52affc508783c046b82cde1775e
24 lines
483 B
Plaintext
24 lines
483 B
Plaintext
cc_library_shared {
|
|
name: "libgralloc.qti",
|
|
vendor_available: true,
|
|
product_specific: true,
|
|
cflags: [
|
|
"-Wno-sign-conversion",
|
|
"-DLOG_TAG=\"qtigralloc\"",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libutils",
|
|
"libgralloctypes",
|
|
"libhidlbase",
|
|
"libhardware",
|
|
"android.hardware.graphics.mapper@4.0"
|
|
],
|
|
|
|
srcs: ["QtiGralloc.cpp"],
|
|
|
|
header_libs: ["display_intf_headers"],
|
|
}
|
|
|