mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
20 lines
327 B
Python
20 lines
327 B
Python
load("@aspect_bazel_lib//lib:copy_directory.bzl", "copy_directory")
|
|
|
|
[
|
|
copy_directory(
|
|
name = "%s" % d,
|
|
src = "dir_%s" % d,
|
|
out = "%s" % d,
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
for d in [
|
|
"test_a",
|
|
"test_b",
|
|
]
|
|
]
|
|
|
|
exports_files([
|
|
"test_c",
|
|
"test_d",
|
|
])
|