aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib/BUILD
blob: 4186702259872a93bc66948c5a32b06b9027e9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
licenses(["notice"])  #  BSD/MIT-like license

filegroup(
    name = "srcs",
    srcs = glob(["**"]),
    visibility = ["//third_party:__pkg__"],
)

cc_library(
    name = "zlib",
    srcs = glob(["*.c"]),
    hdrs = glob(["*.h"]),
    copts = ["-w"],
    includes = ["."],
    visibility = ["//visibility:public"],
)