blob: 095cea47250e2df6773026ced0e0f27af823cd21 [file] [log] [blame]
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(["**"]),
)