mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
93019cbd7b
Bug 908503: Build config changes for libstagefright demuxer; r=glandium Bug 908503: Remove Chrome demuxer; r=cpearce Bug 908503: Add conversion to Annex B; r=cpearce
50 lines
1.3 KiB
Python
50 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/libstagefright',
|
|
'media/libsoundtouch',
|
|
]
|
|
|
|
PARALLEL_DIRS += ['../../' + i for i in external_dirs]
|