1soong_namespace {
2    imports: [
3        "hardware/google/graphics/common",
4        "hardware/google/gchips/gralloc4",
5    ]
6}
7
8package {
9    default_applicable_licenses: [
10        "Android-Apache-2.0",
11        "hardware_google_gchips_license",
12    ],
13}
14
15// See: http://go/android-license-faq
16license {
17    name: "hardware_google_gchips_license",
18    visibility: [":__subpackages__"],
19    license_kinds: ["SPDX-license-identifier-Apache-2.0"],
20    license_text: ["LICENSE"],
21}
22
23cc_library_headers {
24    name: "google_hal_headers",
25    host_supported: true,
26    header_libs: [
27        "libaudio_system_headers",
28        "libhardware_headers",
29        "libsystem_headers",
30        "libcutils_headers",
31    ],
32    export_header_lib_headers: [
33        "libaudio_system_headers",
34        "libsystem_headers",
35        "libcutils_headers",
36        "libhardware_headers",
37    ],
38
39    export_include_dirs: ["include"],
40    proprietary: true,
41}
42
43subdirs = ["*"]
44