aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/zip/BUILD
blob: 4ccf9f7273f96c70f3b0f972cc5db4d7a95caada (plain)
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
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "srcs",
    srcs = glob(["**"]),
)

sh_binary(
    name = "zip_manifest_creator",
    srcs = ["zip_manifest_creator.sh"],
    data = ["//third_party/ijar:zipper"],
)

sh_test(
    name = "zip_manifest_creator_test",
    size = "small",
    srcs = ["zip_manifest_creator_test.sh"],
    data = [":zip_manifest_creator"],
)

py_binary(
    name = "embedded_jar_extractor",
    srcs = ["embedded_jar_extractor.py"],
    deps = ["//third_party/py/gflags"],
)

py_test(
    name = "embedded_jar_extractor_test",
    srcs = ["embedded_jar_extractor_test.py"],
    deps = [":embedded_jar_extractor"],
)