aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-03-01 04:29:26 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-03-01 04:29:26 +0000
commit4603692ae4240c6e1ad6c222e4cc972b78eafc51 (patch)
tree15e3d5044f8d1a1d893142e89d6d3a408f1434da
parent482a43388c53cd424b1829e331757cb41388d596 (diff)
parentc1178f37dcbdc6d5d7b7e1115d946cf90c12686a (diff)
downloadstarlark-go-4603692ae4240c6e1ad6c222e4cc972b78eafc51.tar.gz
[LSC] Add LOCAL_LICENSE_KINDS to external/starlark-go am: c1178f37dcplatform-tools-31.0.2platform-tools-31.0.1
Original change: https://android-review.googlesource.com/c/platform/external/starlark-go/+/1609821 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib2012f89569b5f450427f1efd719c371db3abd4f
-rw-r--r--Android.bp30
1 files changed, 30 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 8c99a7d..a9d4066 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,6 +1,36 @@
// Packages the Starlark interpreter embedded in
// product_config uses.
+package {
+ default_applicable_licenses: ["external_starlark-go_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_starlark-go_license",
+ visibility: [":__subpackages__"],
+ license_kinds: [
+ "SPDX-license-identifier-Apache-2.0",
+ "SPDX-license-identifier-BSD",
+ ],
+ license_text: [
+ "LICENSE",
+ ],
+}
+
bootstrap_go_package {
name: "go-starlark-internal-compile",
pkgPath: "go.starlark.net/internal/compile",