aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar/BUILD
blob: 882f79fbdea9b0532a598ef8e87df05da35d2293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package(
    default_visibility = [
        "//src:__subpackages__",
        "//third_party/ijar:__subpackages__",
    ],
)

licenses(["notice"])  # Apache 2.0

cc_binary(
    name = "ijar",
    srcs = glob([
        "*.cc",
        "*.h",
    ]),
    # TODO(bazel-team): we should replace the -lz flag.
    linkopts = ["-lz"],
)