mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-03 02:52:58 +00:00
ec65e18bb5
Co-authored-by: James Sharpe <james.sharpe@zenotech.com>
11 lines
239 B
Python
11 lines
239 B
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
bzl_library(
|
|
name = "bzl_srcs",
|
|
srcs = glob(["**/*.bzl"]),
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//foreign_cc/built_tools/private:bzl_srcs",
|
|
],
|
|
)
|