1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| cc_library_static {
| name: "libgif",
|
| sdk_version: "9",
|
| srcs: [
| "dgif_lib.c",
| "egif_lib.c",
| "gifalloc.c",
| "gif_err.c",
| "gif_hash.c",
| "openbsd-reallocarray.c",
| "quantize.c",
| ],
|
| cflags: [
| "-Werror",
| "-Wno-format",
| "-Wno-sign-compare",
| "-Wno-unused-parameter",
| "-DHAVE_CONFIG_H",
| ],
|
| export_include_dirs: ["."],
| }
|
|