We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a75b00 commit 3b8ac45Copy full SHA for 3b8ac45
1 file changed
validator/cpp/engine/BUILD
@@ -1,6 +1,7 @@
1
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
2
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
3
load("embed_data.bzl", "embed_data")
4
+load("//tools/build_defs/license:license.bzl", "license")
5
6
# Requirements:
7
# clang with c++17 support.
@@ -14,7 +15,15 @@ load("embed_data.bzl", "embed_data")
14
15
#
16
# bazel test --cxxopt='-std=c++17' validator_test
17
-package(default_visibility = ["//visibility:public"])
18
+package(
19
+ default_applicable_licenses = [":license"],
20
+ default_visibility = ["//visibility:public"],
21
+)
22
+
23
+license(
24
+ name = "license",
25
+ package_name = "ampvalidator",
26
27
28
licenses(["notice"])
29
0 commit comments