blob: bf2bb074d7c1590eb4e4e5cfac0c82a564c90c21 [file] [log] [blame]
Sean Callanan533c42c2020-12-28 16:09:22 -08001soong_namespace {
2 imports: ["hardware/google/graphics/common"]
3}
4
Bob Badour31bd5fa2021-03-25 09:54:38 -07005package {
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
HyunKyung Kim83672bd2019-08-12 15:33:49 +090033cc_library_headers {
34 name: "google_hal_headers",
Yuriy Romanenko4006f582020-07-17 21:25:42 -070035 host_supported: true,
HyunKyung Kim83672bd2019-08-12 15:33:49 +090036 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 = ["*"]