This change does the following: - Always use {,new_}http_archive rather than git_repository - Make liberal use of strip_prefix - Clarify licenses() in BUILD files - On POSIX include headers like a normal C/C++ program This change accomplishes the following: - Reduce download size >100MB: The biggest culprit is grpc which has tens of thousands of commits in its GitHub repository. - Reduce disk size >200MB: On disk, grpc takes up 250MB when cloned even though the tarball of the git repo is 3.2MB. By never using git externals, we save on network. - Consume less cpu: Cloning git repositories is much slower than downloading and extracting a tarball. Change: 133895791
45 lines
871 B
Plaintext
45 lines
871 B
Plaintext
# Description:
|
|
# A library for decoding and encoding GIF images
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
cc_library(
|
|
name = "gif",
|
|
srcs = [
|
|
"dgif_lib.c",
|
|
"egif_lib.c",
|
|
"gif_err.c",
|
|
"gif_font.c",
|
|
"gif_hash.c",
|
|
"gif_hash.h",
|
|
"gif_lib_private.h",
|
|
"gifalloc.c",
|
|
"openbsd-reallocarray.c",
|
|
"quantize.c",
|
|
],
|
|
hdrs = ["gif_lib.h"],
|
|
includes = ["."],
|
|
visibility = ["//visibility:public"],
|
|
deps = select({
|
|
":windows": [":windows_polyfill"],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|
|
|
|
cc_library(
|
|
name = "windows_polyfill",
|
|
hdrs = ["windows/unistd.h"],
|
|
includes = ["windows"],
|
|
)
|
|
|
|
genrule(
|
|
name = "windows_unistd_h",
|
|
outs = ["windows/unistd.h"],
|
|
cmd = "touch $@",
|
|
)
|
|
|
|
config_setting(
|
|
name = "windows",
|
|
values = {"cpu": "x64_windows_msvc"},
|
|
)
|