1soong_namespace {
2    imports: ["hardware/google/graphics/common"]
3}
4
5package {
6    default_applicable_licenses: ["hardware_google_gchips_license"],
7}
8
9// Added automatically by a large-scale-change that took the approach of
10// 'apply every license found to every target'. While this makes sure we respect
11// every license restriction, it may not be entirely correct.
12//
13// e.g. GPL in an MIT project might only apply to the contrib/ directory.
14//
15// Please consider splitting the single license below into multiple licenses,
16// taking care not to lose any license_kind information, and overriding the
17// default license using the 'licenses: [...]' property on targets as needed.
18//
19// For unused files, consider creating a 'fileGroup' with "//visibility:private"
20// to attach the license to, and including a comment whether the files may be
21// used in the current project.
22// See: http://go/android-license-faq
23license {
24    name: "hardware_google_gchips_license",
25    visibility: [":__subpackages__"],
26    license_kinds: [
27        "SPDX-license-identifier-Apache-2.0",
28        "SPDX-license-identifier-GPL-2.0",
29    ],
30    // large-scale-change unable to identify any license_text files
31}
32
33cc_library_headers {
34    name: "google_hal_headers",
35    host_supported: true,
36    header_libs: [
37        "libaudio_system_headers",
38        "libhardware_headers",
39        "libsystem_headers",
40        "libcutils_headers",
41    ],
42    export_header_lib_headers: [
43        "libaudio_system_headers",
44        "libsystem_headers",
45        "libcutils_headers",
46        "libhardware_headers",
47    ],
48
49    export_include_dirs: ["include"],
50    proprietary: true,
51}
52
53subdirs = ["*"]
54