mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-28 08:43:26 +00:00
dd1e2850bd
Co-authored-by: James Sharpe <james.sharpe@zenotech.com>
15 lines
291 B
Python
15 lines
291 B
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
exports_files([
|
|
"runnable_binary_wrapper.sh",
|
|
])
|
|
|
|
bzl_library(
|
|
name = "bzl_srcs",
|
|
srcs = glob(["**/*.bzl"]),
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//foreign_cc/private/framework:bzl_srcs",
|
|
],
|
|
)
|