mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
26 lines
759 B
Python
Executable File
26 lines
759 B
Python
Executable File
workspace(name = "butteraugli")
|
|
|
|
new_http_archive(
|
|
name = "png_archive",
|
|
url = "http://github.com/glennrp/libpng/archive/v1.2.57.zip",
|
|
sha256 = "a941dc09ca00148fe7aaf4ecdd6a67579c293678ed1e1cf633b5ffc02f4f8cf7",
|
|
strip_prefix = "libpng-1.2.57",
|
|
build_file = "png.BUILD",
|
|
)
|
|
|
|
new_http_archive(
|
|
name = "zlib_archive",
|
|
url = "http://zlib.net/fossils/zlib-1.2.10.tar.gz",
|
|
sha256 = "8d7e9f698ce48787b6e1c67e6bff79e487303e66077e25cb9784ac8835978017",
|
|
strip_prefix = "zlib-1.2.10",
|
|
build_file = "zlib.BUILD",
|
|
)
|
|
|
|
new_http_archive(
|
|
name = "jpeg_archive",
|
|
url = "http://www.ijg.org/files/jpegsrc.v9b.tar.gz",
|
|
sha256 = "240fd398da741669bf3c90366f58452ea59041cacc741a489b99f2f6a0bad052",
|
|
strip_prefix = "jpeg-9b",
|
|
build_file = "jpeg.BUILD",
|
|
)
|