aboutsummaryrefslogtreecommitdiff
path: root/examples/vendor/constant_gen/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vendor/constant_gen/BUILD')
-rw-r--r--examples/vendor/constant_gen/BUILD22
1 files changed, 17 insertions, 5 deletions
diff --git a/examples/vendor/constant_gen/BUILD b/examples/vendor/constant_gen/BUILD
index a81885c..e70f489 100644
--- a/examples/vendor/constant_gen/BUILD
+++ b/examples/vendor/constant_gen/BUILD
@@ -1,8 +1,21 @@
+# Copyright 2022 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
# An example of a code generator with a distinct license for the generated code.
load("@rules_license//rules:compliance.bzl", "licenses_used")
-load("@rules_license//rules:license.bzl", "license")
load("@rules_license//tools:test_helpers.bzl", "golden_test")
+load("@rules_license//rules:license.bzl", "license")
load(":defs.bzl", "constant_gen")
package(
@@ -13,22 +26,20 @@ package(
# The default license for an entire package is typically named "license".
license(
name = "license",
+ package_name = "Trivial Code Generator",
license_kinds = [
"@rules_license//examples/my_org/licenses:generic_restricted",
],
license_text = "LICENSE",
- package_name = "Trivial Code Generator",
- package_url = "http://github.com/tgc-fake/tgc.tgz",
- package_version = "3.14",
)
license(
name = "license_for_emitted_code",
package_name = "Trivial Code Generator Output",
- license = "LICENSE.on_output",
license_kinds = [
"@rules_license//examples/my_org/licenses:unencumbered",
],
+ license_text = "LICENSE.on_output",
)
# The generator itself will be licensed under :license
@@ -69,3 +80,4 @@ golden_test(
golden = "generated_code_licenses.golden",
subject = ":generated_code_licenses.json",
)
+