• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["external_giflib_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "external_giflib_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-MIT",
12    ],
13    license_text: [
14        "NOTICE",
15    ],
16}
17
18cc_library_static {
19    name: "libgif",
20
21    sdk_version: "9",
22
23    srcs: [
24        "dgif_lib.c",
25        "egif_lib.c",
26        "gifalloc.c",
27        "gif_err.c",
28        "gif_hash.c",
29        "openbsd-reallocarray.c",
30        "quantize.c",
31    ],
32
33    cflags: [
34        "-Werror",
35        "-Wno-format",
36        "-Wno-sign-compare",
37        "-Wno-unused-parameter",
38        "-DHAVE_CONFIG_H",
39    ],
40
41    export_include_dirs: ["."],
42}
43