Add licenses() to all BUILD files. (#141)
This commit is contained in:
parent
be3b1fc838
commit
31b8ea5ea1
|
@ -1,5 +1,7 @@
|
|||
load("@io_bazel_skydoc//stardoc:stardoc.bzl", "stardoc")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
# Note that due to a bug in Bazel 0.22.0, these targets cannot be built without
|
||||
# the --incompatible_remap_main_repo flag.
|
||||
stardoc(
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
load("//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
bzl_library(
|
||||
name = "copy_file_private",
|
||||
srcs = ["copy_file_private.bzl"],
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
load("//rules:copy_file.bzl", "copy_file")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_testonly = 1)
|
||||
|
||||
sh_test(
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
load("//rules:diff_test.bzl", "diff_test")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_testonly = 1)
|
||||
|
||||
sh_test(
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
|
||||
load("//rules/private:maprule.bzl", "bash_maprule")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_testonly = 1)
|
||||
|
||||
sh_test(
|
||||
|
|
|
@ -34,6 +34,8 @@
|
|||
|
||||
load("//rules:write_file.bzl", "write_file")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_testonly = 1)
|
||||
|
||||
sh_test(
|
||||
|
|
Loading…
Reference in New Issue