android13/external/zlib
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
contrib initial 2024-06-22 20:45:49 +08:00
google initial 2024-06-22 20:45:49 +08:00
patches initial 2024-06-22 20:45:49 +08:00
Android.bp initial 2024-06-22 20:45:49 +08:00
BUILD.gn initial 2024-06-22 20:45:49 +08:00
CMakeLists.txt initial 2024-06-22 20:45:49 +08:00
CleanSpec.mk initial 2024-06-22 20:45:49 +08:00
DIR_METADATA initial 2024-06-22 20:45:49 +08:00
LICENSE initial 2024-06-22 20:45:49 +08:00
METADATA initial 2024-06-22 20:45:49 +08:00
MODULE_LICENSE_BSD_LIKE initial 2024-06-22 20:45:49 +08:00
OWNERS initial 2024-06-22 20:45:49 +08:00
OWNERS.android initial 2024-06-22 20:45:49 +08:00
README.chromium initial 2024-06-22 20:45:49 +08:00
TEST_MAPPING initial 2024-06-22 20:45:49 +08:00
adler32.c initial 2024-06-22 20:45:49 +08:00
adler32_simd.c initial 2024-06-22 20:45:49 +08:00
adler32_simd.h initial 2024-06-22 20:45:49 +08:00
chromeconf.h initial 2024-06-22 20:45:49 +08:00
compress.c initial 2024-06-22 20:45:49 +08:00
cpu_features.c initial 2024-06-22 20:45:49 +08:00
cpu_features.h initial 2024-06-22 20:45:49 +08:00
crc32.c initial 2024-06-22 20:45:49 +08:00
crc32.h initial 2024-06-22 20:45:49 +08:00
crc32_simd.c initial 2024-06-22 20:45:49 +08:00
crc32_simd.h initial 2024-06-22 20:45:49 +08:00
crc_folding.c initial 2024-06-22 20:45:49 +08:00
deflate.c initial 2024-06-22 20:45:49 +08:00
deflate.h initial 2024-06-22 20:45:49 +08:00
fill_window_sse.c initial 2024-06-22 20:45:49 +08:00
gzclose.c initial 2024-06-22 20:45:49 +08:00
gzguts.h initial 2024-06-22 20:45:49 +08:00
gzlib.c initial 2024-06-22 20:45:49 +08:00
gzread.c initial 2024-06-22 20:45:49 +08:00
gzwrite.c initial 2024-06-22 20:45:49 +08:00
infback.c initial 2024-06-22 20:45:49 +08:00
inffast.c initial 2024-06-22 20:45:49 +08:00
inffast.h initial 2024-06-22 20:45:49 +08:00
inffixed.h initial 2024-06-22 20:45:49 +08:00
inflate.c initial 2024-06-22 20:45:49 +08:00
inflate.h initial 2024-06-22 20:45:49 +08:00
inftrees.c initial 2024-06-22 20:45:49 +08:00
inftrees.h initial 2024-06-22 20:45:49 +08:00
libz.map.txt initial 2024-06-22 20:45:49 +08:00
trees.c initial 2024-06-22 20:45:49 +08:00
trees.h initial 2024-06-22 20:45:49 +08:00
uncompr.c initial 2024-06-22 20:45:49 +08:00
zconf.h initial 2024-06-22 20:45:49 +08:00
zlib.h initial 2024-06-22 20:45:49 +08:00
zutil.c initial 2024-06-22 20:45:49 +08:00
zutil.h initial 2024-06-22 20:45:49 +08:00

README.chromium

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Name: zlib
Short Name: zlib
URL: http://zlib.net/
Version: 1.2.11
CPEPrefix: cpe:/a:zlib:zlib:1.2.11
Security Critical: yes
License: Custom license
License File: LICENSE
License Android Compatible: yes

Description:
"A massively spiffy yet delicately unobtrusive compression library."

zlib is a free, general-purpose, legally unencumbered lossless data-compression
library. zlib implements the "deflate" compression algorithm described by RFC
1951, which combines the LZ77 (Lempel-Ziv) algorithm with Huffman coding. zlib
also implements the zlib (RFC 1950) and gzip (RFC 1952) wrapper formats.

Local Modifications:
 - Only source code from the zlib distribution used to build the zlib and
   minizip libraries are present. Many other files have been omitted. Only *.c
   and *.h files from the upstream root directory and contrib/minizip were
   imported.
 - The contents of the google directory are original Chromium-specific
   additions.
 - Added chromeconf.h
 - Plus the changes in 'patches' folder.
 - Code in contrib/ other than contrib/minizip was added to match zlib's
   contributor layout.