2024-02-22 11:05:41 +00:00
|
|
|
load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
|
|
|
|
|
2024-02-21 01:58:00 +00:00
|
|
|
package(default_visibility = ["//tests/rule_based_toolchain:__subpackages__"])
|
|
|
|
|
|
|
|
exports_files(
|
|
|
|
glob(
|
|
|
|
["*"],
|
|
|
|
exclude = ["BUILD"],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2024-02-22 11:05:41 +00:00
|
|
|
native_binary(
|
|
|
|
name = "bin_wrapper",
|
|
|
|
src = "bin_wrapper.sh",
|
|
|
|
out = "bin_wrapper",
|
|
|
|
data = [":bin"],
|
|
|
|
)
|
|
|
|
|
2024-02-21 01:58:00 +00:00
|
|
|
filegroup(
|
|
|
|
name = "multiple",
|
|
|
|
srcs = [
|
|
|
|
"multiple1",
|
|
|
|
"multiple2",
|
|
|
|
],
|
|
|
|
)
|
2024-02-22 11:05:41 +00:00
|
|
|
|
|
|
|
# Analysis_test is unable to depend on source files directly, but it can depend
|
|
|
|
# on a filegroup containing a single file.
|
|
|
|
filegroup(
|
|
|
|
name = "bin_filegroup",
|
|
|
|
srcs = ["bin"],
|
|
|
|
)
|