blob: 0703d7f3bb8ae6866f344ae55ecf90e904c4bf61 [file] [log] [blame]
# Build file to expose zipper to the @bazel_tools repository.
package(default_visibility = ["//visibility:public"])
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
# zipper will be added when creating the @bazel_tools repository.
filegroup(
name = "zipper",
srcs = glob(["zipper/*"]),
)
sh_binary(
name = "unzip",
srcs = ["unzip.sh"],
)
sh_binary(
name = "zip_manifest_creator",
srcs = ["zip_manifest_creator.sh"],
)
sh_test(
name = "zip_manifest_creator_test",
size = "small",
srcs = ["zip_manifest_creator_test.sh"],
data = [":zip_manifest_creator"],
)