From e28db9fced14d1ae16b20773544f57e382b9983e Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Thu, 29 Dec 2016 00:24:58 -0800 Subject: Move most foo.BUILD files into third_party This frees up space on the TensorFlow GitHub home page! Change: 143161497 --- third_party/png.BUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 third_party/png.BUILD (limited to 'third_party/png.BUILD') diff --git a/third_party/png.BUILD b/third_party/png.BUILD new file mode 100644 index 0000000000..6a7ad719aa --- /dev/null +++ b/third_party/png.BUILD @@ -0,0 +1,35 @@ +# Description: +# libpng is the official PNG reference library. + +licenses(["notice"]) # BSD/MIT-like license + +exports_files(["LICENSE"]) + +cc_library( + name = "png", + srcs = [ + "png.c", + "pngerror.c", + "pngget.c", + "pngmem.c", + "pngpread.c", + "pngread.c", + "pngrio.c", + "pngrtran.c", + "pngrutil.c", + "pngset.c", + "pngtrans.c", + "pngwio.c", + "pngwrite.c", + "pngwtran.c", + "pngwutil.c", + ], + hdrs = [ + "png.h", + "pngconf.h", + ], + includes = ["."], + linkopts = ["-lm"], + visibility = ["//visibility:public"], + deps = ["@zlib_archive//:zlib"], +) -- cgit v1.2.3