diff options
author | Bob Badour <bbadour@google.com> | 2021-02-12 18:25:38 -0800 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2021-02-14 10:37:22 -0800 |
commit | c7d1b71820aeeecda03affe20b09191872e0fe77 (patch) | |
tree | dfd15a994d01260db5255146bfd1a9a0284aa94e | |
parent | 4f7803731ef66fea959c10fa9149037da2f6e386 (diff) | |
download | platform_external_rust_crates_quote-c7d1b71820aeeecda03affe20b09191872e0fe77.tar.gz platform_external_rust_crates_quote-c7d1b71820aeeecda03affe20b09191872e0fe77.tar.bz2 platform_external_rust_crates_quote-c7d1b71820aeeecda03affe20b09191872e0fe77.zip |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/quoteandroid-s-preview-1
Added SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT to:
Android.bp
Bug: 68860345
Bug: 151177513
Bug: 151953481
Test: m all
Exempt-From-Owner-Approval: janitorial work
Change-Id: Ie02affe834437fae32cb7f639d551b6bd0d329da
-rw-r--r-- | Android.bp | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,5 +1,41 @@ // This file is generated by cargo2android.py --run --dependencies --host-first-multilib. +package { + default_applicable_licenses: ["external_rust_crates_quote_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. +// +// large-scale-change included anything that looked like it might be a license +// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc. +// +// Please consider removing redundant or irrelevant files from 'license_text:'. +// See: http://go/android-license-faq +license { + name: "external_rust_crates_quote_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-Apache-2.0", + "SPDX-license-identifier-MIT", + ], + license_text: [ + "LICENSE-APACHE", + "LICENSE-MIT", + ], +} + rust_library_host { name: "libquote", crate_name: "quote", |