aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2022-10-06 23:35:19 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-10-06 23:35:19 +0000
commit04081d6fa72548845bd26176df6302fdd8f03b93 (patch)
tree60501c61163b874612f51239778c9821bc2d4210
parent1e1a4332ce69e371f0d7cc2def79e5de704c61cc (diff)
parent7b7039f89f312f23af2690ba74d9160389879fb6 (diff)
downloadder_derive-04081d6fa72548845bd26176df6302fdd8f03b93.tar.gz
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/der_derive am: 98502b4bca am: 150820373a am: 7b7039f89f
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/der_derive/+/2241967 Change-Id: I3e7c51e1ad3b882f129867d1c019724ca58cdc9e Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp30
1 files changed, 30 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 623ede3..b46094b 100644
--- a/Android.bp
+++ b/Android.bp
@@ -3,6 +3,36 @@
+package {
+ default_applicable_licenses: ["external_rust_crates_der_derive_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_rust_crates_der_derive_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-Apache-2.0",
+ "SPDX-license-identifier-MIT",
+ ],
+ license_text: [
+ "LICENSE-APACHE",
+ ],
+}
+
rust_proc_macro {
name: "libder_derive",
crate_name: "der_derive",