blob: 534873fec886203dfc9e099d72abb425b0f3ed5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
licenses(["notice"]) # BSD/MIT-like license
filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = ["//third_party:__pkg__"],
)
filegroup(
name = "embedded_tools",
srcs = glob(["*.c"]) + glob(["*.h"]) + ["BUILD"] + ["LICENSE.txt"],
visibility = ["//visibility:public"],
)
cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
# Use -Dverbose=-1 to turn off zlib's trace logging. (#3280)
copts = ["-w", "-Dverbose=-1"],
includes = ["."],
visibility = ["//visibility:public"],
)
|