mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
34 lines
657 B
Plaintext
34 lines
657 B
Plaintext
# Description:
|
|
# libpng is the official PNG reference library.
|
|
|
|
licenses(["notice"]) # BSD/MIT-like 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 = ["@net_zlib//:zlib"],
|
|
)
|