This target will be used by Bazel to embed a release of 'platforms' into the Bazel binary itself. Progress towards bazelbuild/bazel#8596 RELNOTES: None. PiperOrigin-RevId: 252619499 Change-Id: I4049f8d5752f9dddc8ad7669db4754c8fb069965
diff --git a/BUILD b/BUILD index 3638149..d73ff92 100644 --- a/BUILD +++ b/BUILD
@@ -1,3 +1,15 @@ +package(default_visibility = ["//visibility:public"]) + licenses(["notice"]) exports_files(["LICENSE"]) + +filegroup( + name = "srcs", + srcs = [ + "BUILD", + "WORKSPACE", + "//cpu:srcs", + "//os:srcs", + ], +)