aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-03-23 15:53:36 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-03-23 15:53:36 +0000
commit586779e1aa7685728f1941d5715611b5f5ab125d (patch)
treebb79351334b229e8ffc8aa5eb92401bebef614b7
parent9bfed681f5c25b3b9e3aa8d577acdb3ab188da69 (diff)
parent1060049963b04198c0464f15e75ab55b4a5c350e (diff)
downloadwalkdir-586779e1aa7685728f1941d5715611b5f5ab125d.tar.gz
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/walkdir am: 1d8dbe615c am: eee15f0ee6 am: 6d73fc2043 am: 1060049963
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/walkdir/+/1649776 Change-Id: Ia9b6c0f10ca4a7aa9a8e6cdef79d20ee8b479cc8
-rw-r--r--Android.bp36
1 files changed, 36 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index c3c8ccf..9ea5995 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,6 +1,42 @@
// This file is generated by cargo2android.py --run --device --dependencies.
// Do not modify this file as changes will be overridden on upgrade.
+package {
+ default_applicable_licenses: ["external_rust_crates_walkdir_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_walkdir_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-MIT",
+ "SPDX-license-identifier-Unlicense",
+ ],
+ license_text: [
+ "COPYING",
+ "LICENSE",
+ ],
+}
+
rust_library {
name: "libwalkdir",
host_supported: true,