From 9ff1d1b6fd0bb762b7d789082d2fdaf84b3873d4 Mon Sep 17 00:00:00 2001 From: Googler Date: Tue, 25 Jun 2024 09:36:59 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 646508523 Change-Id: I7f45474a8c0052e3693aceca6ed2436396f13829 --- cc/BUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/cc/BUILD b/cc/BUILD index aeb5beb8..60c42905 100644 --- a/cc/BUILD +++ b/cc/BUILD @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +load("@bazel_skylib//:bzl_library.bzl", "bzl_library") + package(default_visibility = ["//visibility:public"]) licenses(["notice"]) # Apache 2.0 @@ -80,6 +82,24 @@ filegroup( ], ) +bzl_library( + name = "find_cc_toolchain_bzl", + srcs = ["find_cc_toolchain.bzl"], + visibility = ["//visibility:public"], +) + +bzl_library( + name = "action_names_bzl", + srcs = ["action_names.bzl"], + visibility = ["//visibility:public"], +) + +bzl_library( + name = "cc_toolchain_config_lib_bzl", + srcs = ["cc_toolchain_config_lib.bzl"], + visibility = ["//visibility:private"], +) + cc_toolchain_alias(name = "current_cc_toolchain") cc_libc_top_alias(name = "current_libc_top")