mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-29 12:33:51 +00:00
edbfa3bfa9
* Restructured rules to match architecture * Added exports of all symbols in the deprecated location for legacy support * Updated examples
14 lines
353 B
Python
14 lines
353 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:bzl_srcs",
|
|
"//foreign_cc/private:bzl_srcs",
|
|
"@bazel_skylib//lib:collections",
|
|
"@bazel_skylib//lib:versions",
|
|
],
|
|
)
|