xref: /aosp_15_r20/external/cronet/net/third_party/quiche/src/build/zlib.BUILD (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
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