1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_library_static {
6    name: "pixel-gralloc-utils",
7    vendor_available: true,
8    shared_libs: [
9        "libui",
10    ],
11    header_libs: [
12        "pixel-gralloc-headers",
13    ],
14    export_header_lib_headers: [
15        "pixel-gralloc-headers",
16    ],
17    export_include_dirs: ["include"],
18    srcs: [
19        "utils.cpp",
20    ],
21}
22