2024-02-21 01:58:00 +00:00
|
|
|
# This directory contains implementations of starlark functions that contain
|
|
|
|
# complex logic. The objective is to keep the rules themselves as simple as
|
|
|
|
# possible, so that we can perform very thorough testing on the implementation.
|
|
|
|
|
|
|
|
# I wanted to call it private / internal, but then buildifier complains about
|
|
|
|
# referencing it from the tests directory.
|
2024-09-07 06:05:14 +00:00
|
|
|
|
|
|
|
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
|
|
|
|
exports_files(
|
|
|
|
["documented_api.bzl"],
|
2024-10-01 06:32:55 +00:00
|
|
|
visibility = ["//docs:__pkg__"],
|
2024-09-07 06:05:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
bzl_library(
|
|
|
|
name = "toolchain_impl_rules",
|
|
|
|
srcs = glob(["*.bzl"]),
|
|
|
|
visibility = ["//cc/toolchains:__subpackages__"],
|
|
|
|
)
|