Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 646508523
Change-Id: I7f45474a8c0052e3693aceca6ed2436396f13829
  • Loading branch information
Googler authored and Copybara-Service committed Jun 25, 2024
1 parent 94d34d7 commit 9ff1d1b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions cc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")

0 comments on commit 9ff1d1b

Please sign in to comment.