mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
Vim control lines were re-introduced or not entirely cleaned up. This nukes them again. Removing from embedding, extensions, gfx, hal, ipc, layout, mailnews, media and memory. More to come.
52 lines
1.5 KiB
INI
52 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.soundtouch += [
|
|
'FIFOSamplePipe.h',
|
|
'SoundTouch.h',
|
|
'soundtouch_config.h',
|
|
'SoundTouchFactory.h',
|
|
'STTypes.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'AAFilter.cpp',
|
|
'cpu_detect_x86.cpp',
|
|
'FIFOSampleBuffer.cpp',
|
|
'FIRFilter.cpp',
|
|
'InterpolateCubic.cpp',
|
|
'InterpolateLinear.cpp',
|
|
'InterpolateShannon.cpp',
|
|
'RateTransposer.cpp',
|
|
'SoundTouch.cpp',
|
|
'SoundTouchFactory.cpp',
|
|
'TDStretch.cpp',
|
|
]
|
|
|
|
if CONFIG['INTEL_ARCHITECTURE']:
|
|
if CONFIG['MOZ_SAMPLE_TYPE_FLOAT32']:
|
|
SOURCES += ['sse_optimized.cpp']
|
|
SOURCES['sse_optimized.cpp'].flags += CONFIG['SSE2_FLAGS']
|
|
else:
|
|
SOURCES += ['mmx_optimized.cpp']
|
|
SOURCES['mmx_optimized.cpp'].flags += CONFIG['MMX_FLAGS']
|
|
|
|
if CONFIG['OS_ARCH'] != 'WINNT':
|
|
# GCC/Clang require permissions to be explicitly set for the soundtouch
|
|
# header.
|
|
CXXFLAGS += ['-include', SRCDIR + '/soundtouch_perms.h']
|
|
else:
|
|
# Windows need alloca renamed to _alloca
|
|
DEFINES['alloca'] = '_alloca'
|
|
|
|
DEFINES['BUILDING_SOUNDTOUCH'] = 1
|
|
|
|
# We allow warnings for third-party code that can be updated from upstream.
|
|
ALLOW_COMPILER_WARNINGS = True
|
|
|
|
FINAL_LIBRARY = 'lgpllibs'
|
|
|
|
# Use abort() instead of exception in SoundTouch.
|
|
DEFINES['ST_NO_EXCEPTION_HANDLING'] = 1
|