mirror of https://github.com/bazelbuild/rules_cc
No public description
PiperOrigin-RevId: 646508523 Change-Id: I7f45474a8c0052e3693aceca6ed2436396f13829
This commit is contained in:
parent
94d34d7954
commit
9ff1d1b6fd
20
cc/BUILD
20
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")
|
||||
|
|
Loading…
Reference in New Issue