1soong_namespace {
2    imports: [
3        "hardware/google/interfaces",
4        "hardware/google/pixel",
5    ],
6}
7
8package {
9    default_applicable_licenses: ["device_google_zuma_license"],
10}
11
12// Added automatically by a large-scale-change that took the approach of
13// 'apply every license found to every target'. While this makes sure we respect
14// every license restriction, it may not be entirely correct.
15//
16// e.g. GPL in an MIT project might only apply to the contrib/ directory.
17//
18// Please consider splitting the single license below into multiple licenses,
19// taking care not to lose any license_kind information, and overriding the
20// default license using the 'licenses: [...]' property on targets as needed.
21//
22// For unused files, consider creating a 'fileGroup' with "//visibility:private"
23// to attach the license to, and including a comment whether the files may be
24// used in the current project.
25// See: http://go/android-license-faq
26license {
27    name: "device_google_zuma_license",
28    visibility: [":__subpackages__"],
29    license_kinds: [
30        "SPDX-license-identifier-Apache-2.0",
31        "SPDX-license-identifier-BSD",
32    ],
33    license_text: [
34        "NOTICE",
35    ],
36}
37
38sh_binary {
39    name: "disable_contaminant_detection.sh",
40    src: "disable_contaminant_detection.sh",
41    vendor: true,
42    sub_dir: "hw",
43}
44
45// Filesystem: Copy efs/efs_backup/modem_userdata to /data partition
46// so that they can be accessed under 16K mode. By default, these partitions
47// are 4K F2FS , which can't be mounted under 16K mode.
48// (b/293313353)
49sh_binary {
50    name: "copy_efs_files_to_data",
51    src: "copy_efs_files_to_data.sh",
52    vendor: true,
53}
54
55