From 31d11dbfb8db0fc39da64be9c094e2900e9aedfb Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Thu, 20 Oct 2016 09:29:46 +0200 Subject: Starting this from scratch -) Basic workspace -) Basic BUILD file with macros --- third_party/zlib.BUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 third_party/zlib.BUILD (limited to 'third_party/zlib.BUILD') diff --git a/third_party/zlib.BUILD b/third_party/zlib.BUILD new file mode 100644 index 0000000000..323c2868a8 --- /dev/null +++ b/third_party/zlib.BUILD @@ -0,0 +1,37 @@ +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", + ], +) + -- cgit v1.2.3