mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e45f0bc2b5
Backed out changeset 476cd5c9c5a9 (bug 908503) Backed out changeset add95b3c2e7f (bug 908503) Backed out changeset 30957caad928 (bug 908503) Backed out changeset f6f386352d12 (bug 908503)
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# 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/.
|
|
|
|
external_dirs = []
|
|
if not CONFIG['MOZ_NATIVE_SQLITE']:
|
|
external_dirs += ['db/sqlite3/src']
|
|
|
|
if not CONFIG['MOZ_NATIVE_JPEG']:
|
|
external_dirs += ['media/libjpeg']
|
|
|
|
if CONFIG['MOZ_UPDATER']:
|
|
if not CONFIG['MOZ_NATIVE_BZ2']:
|
|
external_dirs += ['modules/libbz2']
|
|
|
|
if CONFIG['MOZ_VORBIS']:
|
|
external_dirs += ['media/libvorbis']
|
|
|
|
if CONFIG['MOZ_TREMOR']:
|
|
external_dirs += ['media/libtremor']
|
|
|
|
if CONFIG['MOZ_OPUS']:
|
|
external_dirs += ['media/libopus']
|
|
|
|
if CONFIG['MOZ_WEBM']:
|
|
external_dirs += ['media/libnestegg']
|
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
external_dirs += ['media/libmkv']
|
|
|
|
if CONFIG['MOZ_VPX'] and not CONFIG['MOZ_NATIVE_LIBVPX']:
|
|
external_dirs += ['media/libvpx']
|
|
|
|
if not CONFIG['MOZ_NATIVE_PNG']:
|
|
external_dirs += ['media/libpng']
|
|
|
|
external_dirs += [
|
|
'media/kiss_fft',
|
|
'media/libcubeb',
|
|
'media/libogg',
|
|
'media/libtheora',
|
|
'media/libspeex_resampler',
|
|
'media/libsoundtouch',
|
|
]
|
|
|
|
PARALLEL_DIRS += ['../../' + i for i in external_dirs]
|