diff --git a/examples/BUILD b/examples/BUILD index c7da75d1..3123ba82 100644 --- a/examples/BUILD +++ b/examples/BUILD @@ -12,10 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +# A collection of examples showing the usage of rules_cc + load("@bazel_skylib//:bzl_library.bzl", "bzl_library") load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") -# A collection of examples showing the usage of rules_cc licenses(["notice"]) bool_flag( diff --git a/examples/my_c_compile/BUILD b/examples/my_c_compile/BUILD index b045509d..0248b99b 100644 --- a/examples/my_c_compile/BUILD +++ b/examples/my_c_compile/BUILD @@ -16,6 +16,7 @@ load("//examples/my_c_compile:my_c_compile.bzl", "my_c_compile") # limitations under the License. # Example showing how to create a custom Starlark rule that just compiles C sources + licenses(["notice"]) my_c_compile( diff --git a/tools/migration/BUILD b/tools/migration/BUILD index 61770087..8eb7a101 100644 --- a/tools/migration/BUILD +++ b/tools/migration/BUILD @@ -13,8 +13,6 @@ # limitations under the License. load("@bazel_skylib//:bzl_library.bzl", "bzl_library") - -# Go rules load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")