2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-12-01 07:15:24 +00:00
bazel-lib/e2e/write_source_files/BUILD.bazel
2023-09-22 13:04:09 -07:00

11 lines
321 B
Python

load("@aspect_bazel_lib//lib:write_source_files.bzl", "write_source_files")
# This tests that the "in" file to write_source_files can be a
# label to an external repository target when bzlmod is enabled.
write_source_files(
name = "write_external",
files = {
"foobar.txt": "@test//:foobar.txt",
},
)