1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
package(default_visibility = ["//visibility:public"])
sh_binary(
name = "bin",
srcs = ["bin.sh"],
deps = [
":lib",
"@bazel_tools//tools/bash/runfiles",
],
)
sh_library(
name = "lib",
data = [
"data/file.txt",
"lib.sh",
],
deps = ["@bazel_tools//tools/bash/runfiles"],
)
sh_test(
name = "test",
size = "small",
srcs = ["test.sh"],
data = ["data/test_file.txt"],
deps = [
":lib",
"@bazel_tools//tools/bash/runfiles",
],
)
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
|