From 31b9b9e0e471f50bea4d613f0df952d30a24fc36 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 21 Oct 2020 07:08:44 -0700 Subject: [PATCH] Add action_names filegroup This seems to exist internally at google and was imported by rules_swift https://github.com/bazelbuild/rules_swift/pull/461 Closes #11912. PiperOrigin-RevId: 338256451 --- tools/build_defs/cc/BUILD | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/build_defs/cc/BUILD b/tools/build_defs/cc/BUILD index 4efae59e99d69a..0722eda8cd5772 100644 --- a/tools/build_defs/cc/BUILD +++ b/tools/build_defs/cc/BUILD @@ -15,6 +15,14 @@ filegroup( ], ) +filegroup( + name = "action_names", + srcs = [ + "action_names.bzl", + ], + visibility = ["//visibility:public"], +) + filegroup( name = "action_names_test_files", testonly = True,