aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2021-03-01 06:31:01 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-03-01 06:31:01 +0000
commitfe0dcb0217ff33a35fd5651b48005b7744822586 (patch)
tree15e3d5044f8d1a1d893142e89d6d3a408f1434da
parentae879b8bd3dd1834ead71298ae13abbed67c7115 (diff)
parent880427e421011804f602ba97c15310405894e289 (diff)
downloadstarlark-go-fe0dcb0217ff33a35fd5651b48005b7744822586.tar.gz
[LSC] Add LOCAL_LICENSE_KINDS to external/starlark-go am: c1178f37dc am: 4603692ae4 am: b2bf863872 am: 880427e421
Original change: https://android-review.googlesource.com/c/platform/external/starlark-go/+/1609821 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: If3a224c98fd96190a2f5ba307e9d18c9adb650d9
-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",