blob: 61a55078084bcd1fe2196f93f22e38180c5bb4c1 [file] [log] [blame]
vasilvv0604a532022-05-24 12:59:16 -07001# 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)