4504aef729
This allows zlib to be overwritten in blaze. No-Try: true Bug: v8:11234 Change-Id: Id858076a4b744fdade7f6a23646d2d78d33723a7 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2993031 Auto-Submit: Victor Gomes <victorgomes@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#75422}
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
# Copyright 2021 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
cc_library(
|
|
name = "zlib",
|
|
srcs = [
|
|
"adler32.c",
|
|
"chromeconf.h",
|
|
"compress.c",
|
|
"contrib/optimizations/insert_string.h",
|
|
"cpu_features.c",
|
|
"cpu_features.h",
|
|
"crc32.c",
|
|
"crc32.h",
|
|
"deflate.c",
|
|
"deflate.h",
|
|
"gzclose.c",
|
|
"gzguts.h",
|
|
"gzlib.c",
|
|
"gzread.c",
|
|
"gzwrite.c",
|
|
"infback.c",
|
|
"inffast.c",
|
|
"inffast.h",
|
|
"inffixed.h",
|
|
"inflate.c",
|
|
"inflate.h",
|
|
"inftrees.c",
|
|
"inftrees.h",
|
|
"trees.c",
|
|
"trees.h",
|
|
"uncompr.c",
|
|
"zconf.h",
|
|
"zlib.h",
|
|
"zutil.c",
|
|
"zutil.h",
|
|
"google/compression_utils_portable.h",
|
|
"google/compression_utils_portable.cc",
|
|
],
|
|
hdrs = [
|
|
"zlib.h",
|
|
"google/compression_utils_portable.h",
|
|
],
|
|
include_prefix = "third_party/zlib",
|
|
defines = [
|
|
"CHROMIUM_ZLIB_NO_CHROMECONF",
|
|
"HAVE_HIDDEN",
|
|
"CPU_NO_SIMD",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|