1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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"],
}
|