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