2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-25 17:31:30 +00:00
rules_cc/BUILD
Googler 0e66ef31d6 rules_cc: Add top-level BUILD file to distribution.
Before this commit Bazel could not use the distribution since it failed with "Every .bzl file must have a corresponding package, but '@rules_cc//:internal_deps.bzl' does not have one."

https://buildkite.com/bazel/bazel-federation-distro-pre-release-testing/builds/20#29164fc9-b0bb-41aa-b62f-e2f3f20e9efc

PiperOrigin-RevId: 275263945
Change-Id: I12216f2070ddc579f553a22975790bbc9a18f0f9
2019-10-17 08:30:50 -07:00

17 lines
300 B
Python

package(default_visibility = ["//visibility:public"])
licenses(["notice"])
exports_files(["LICENSE"])
filegroup(
name = "distribution",
srcs = [
"BUILD",
"LICENSE",
"internal_deps.bzl",
"internal_setup.bzl",
],
visibility = ["@//distro:__pkg__"],
)