mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-25 17:31:30 +00:00
0e66ef31d6
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
17 lines
300 B
Python
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__"],
|
|
)
|