mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-03 02:52:58 +00:00
edbfa3bfa9
* Restructured rules to match architecture * Added exports of all symbols in the deprecated location for legacy support * Updated examples
12 lines
324 B
Python
12 lines
324 B
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
bzl_library(
|
|
name = "bzl_srcs",
|
|
srcs = glob(["**/*.bzl"]),
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//foreign_cc/private/shell_toolchain/polymorphism:bzl_srcs",
|
|
"//foreign_cc/private/shell_toolchain/toolchains:bzl_srcs",
|
|
],
|
|
)
|