aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib.BUILD
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-10-20 22:30:16 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-10-20 22:31:46 +0200
commitd58c375d764c65d699cfd0e4536c3e8f631e8221 (patch)
tree1ac2ecbfd3f84de17119d2fe496e70402a2c2262 /third_party/zlib.BUILD
parent4dba2ea20cb81e1fd1f863ca2c58ab4be7e4fea2 (diff)
Buildify.
Diffstat (limited to 'third_party/zlib.BUILD')
-rw-r--r--third_party/zlib.BUILD69
1 files changed, 34 insertions, 35 deletions
diff --git a/third_party/zlib.BUILD b/third_party/zlib.BUILD
index 323c2868a8..7879a81c68 100644
--- a/third_party/zlib.BUILD
+++ b/third_party/zlib.BUILD
@@ -1,37 +1,36 @@
cc_library(
- name = "z",
- linkstatic = 1,
- srcs = [
- 'adler32.c',
- 'compress.c',
- 'crc32.c',
- 'deflate.c',
- 'infback.c',
- 'inffast.c',
- 'inflate.c',
- 'inftrees.c',
- 'trees.c',
- 'uncompr.c',
- 'zutil.c',
- ],
- hdrs = [
- 'crc32.h',
- 'deflate.h',
- 'gzguts.h',
- 'inffast.h',
- 'inffixed.h',
- 'inflate.h',
- 'inftrees.h',
- 'trees.h',
- 'zconf.h',
- 'zlib.h',
- 'zutil.h',
- ],
- includes = [
- 'include',
- ],
- visibility = [
- "//visibility:public",
- ],
+ name = "z",
+ srcs = [
+ "adler32.c",
+ "compress.c",
+ "crc32.c",
+ "deflate.c",
+ "infback.c",
+ "inffast.c",
+ "inflate.c",
+ "inftrees.c",
+ "trees.c",
+ "uncompr.c",
+ "zutil.c",
+ ],
+ hdrs = [
+ "crc32.h",
+ "deflate.h",
+ "gzguts.h",
+ "inffast.h",
+ "inffixed.h",
+ "inflate.h",
+ "inftrees.h",
+ "trees.h",
+ "zconf.h",
+ "zlib.h",
+ "zutil.h",
+ ],
+ includes = [
+ "include",
+ ],
+ linkstatic = 1,
+ visibility = [
+ "//visibility:public",
+ ],
)
-