diff options
author | Bob Badour <bbadour@google.com> | 2023-04-12 09:44:50 -0700 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2023-04-12 20:37:27 +0000 |
commit | a151d0906f86f651861eb28ad504791c98d2f7ce (patch) | |
tree | 69dcc2236787491dcd83c35f03554801a61788f5 | |
parent | 27d80353f6c2ea53a9cc20e8c943307299cf9231 (diff) |
Add LOCAL_LICENSE_KINDS to external/noto-fonts
Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT
SPDX-license-identifier-OFL SPDX-license-identifier-Unicode-DFS
SPDX-license-identifier-W3C
to:
Android.bp
Bug: 68860345
Bug: 151177513
Bug: 151953481
Test: m all
Change-Id: I3f76c85a5eb05228acd6cc5d767995a6a78bdb0e
Merged-in: I48b78f1c44214f690e2f4cffade63f38e0035b43
-rw-r--r-- | Android.bp | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -16,6 +16,36 @@ // *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE // CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE // DEPENDING ON IT IN YOUR PROJECT. *** +package { + default_applicable_licenses: ["external_noto-fonts_license"], +} + +// Added automatically by a large-scale-change that took the approach of +// 'apply every license found to every target'. While this makes sure we respect +// every license restriction, it may not be entirely correct. +// +// e.g. GPL in an MIT project might only apply to the contrib/ directory. +// +// Please consider splitting the single license below into multiple licenses, +// taking care not to lose any license_kind information, and overriding the +// default license using the 'licenses: [...]' property on targets as needed. +// +// For unused files, consider creating a 'fileGroup' with "//visibility:private" +// to attach the license to, and including a comment whether the files may be +// used in the current project. +// See: http://go/android-license-faq +license { + name: "external_noto-fonts_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-Apache-2.0", + "SPDX-license-identifier-MIT", + "SPDX-license-identifier-OFL", // by exception only + "SPDX-license-identifier-Unicode-DFS", + "SPDX-license-identifier-W3C", + ], + // large-scale-change unable to identify any license_text files +} filegroup { name: "recovery_noto-fonts_dep", |