1package {
2    default_team: "trendy_team_android_core_graphics_stack",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "hardware_interfaces_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11cc_library_static {
12    name: "libgralloc1-adapter",
13    defaults: ["hidl_defaults"],
14    vendor: true,
15    srcs: [
16        "gralloc1-adapter.cpp",
17        "Gralloc1On0Adapter.cpp",
18    ],
19    include_dirs: ["system/core/libsync/include"],
20    export_include_dirs: ["."],
21    whole_static_libs: ["libgrallocusage"],
22    shared_libs: [
23        "libhardware",
24        "liblog",
25    ],
26}
27