aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/zip/BUILD
blob: 09951bfa724bb3c4f86c985e8cdb38e09aa95cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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"],
)