• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2022 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5licenses(["notice"])
6
7cc_library(
8    name = "zlib",
9    srcs = glob(
10        include = [
11            "*.c",
12            "*.h",
13        ],
14        exclude = [
15            "zlib.h",
16            "zconf.h",
17        ],
18    ),
19    hdrs = [
20        "zconf.h",
21        "zlib.h",
22    ],
23    copts = ["-Wno-implicit-function-declaration"],
24    visibility = ["//visibility:public"],
25)
26