Dactyloidae/modules/zlib/src/moz.build

66 lines
1.5 KiB
INI

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
EXPORTS += [
'mozzconf.h',
'zconf.h',
'zlib.h',
]
if CONFIG['CPU_ARCH'] == 'arm':
DEFINES['ADLER32_SIMD_NEON'] = True
DEFINES['INFLATE_CHUNK_SIMD_NEON'] = True
SOURCES += [
'adler32_simd.c',
'inffast_chunk.c',
'inflate_simd.c',
]
if CONFIG['INTEL_ARCHITECTURE']:
DEFINES['ADLER32_SIMD_SSSE3'] = True
DEFINES['INFLATE_CHUNK_SIMD_SSE2'] = True
DEFINES['CRC32_SIMD_SSE42_PCLMUL'] = True
SOURCES += [
'adler32_simd.c',
'crc32_simd.c',
'crc_folding.c',
'fill_window_sse.c',
'inffast_chunk.c',
'inflate_simd.c',
'x86.c',
]
else:
SOURCES += [
'simd_stub.c',
]
if CONFIG['CPU_ARCH'] != 'arm' and not CONFIG['INTEL_ARCHITECTURE']:
SOURCES += [
'inflate.c',
]
if CONFIG['ZLIB_IN_MOZGLUE']:
FINAL_LIBRARY = 'mozglue'
DEFINES['IMPL_MFBT'] = True
else:
# The final library is in config/external/zlib
FINAL_LIBRARY = 'zlib'
SOURCES += [
'adler32.c',
'compress.c',
'crc32.c',
'deflate.c',
'gzclose.c',
'gzlib.c',
'gzread.c',
'gzwrite.c',
'infback.c',
'inffast.c',
'inftrees.c',
'trees.c',
'uncompr.c',
'zutil.c',
]