mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
47 lines
1.2 KiB
Python
47 lines
1.2 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_VP8'] and not CONFIG['MOZ_NATIVE_LIBVPX']:
|
|
external_dirs += ['media/libvpx']
|
|
|
|
if CONFIG['MOZ_OGG']:
|
|
external_dirs += ['media/libogg', 'media/libtheora']
|
|
|
|
if not CONFIG['MOZ_NATIVE_PNG']:
|
|
external_dirs += ['media/libpng']
|
|
|
|
external_dirs += [
|
|
'media/kiss_fft',
|
|
'media/libcubeb',
|
|
'media/libspeex_resampler',
|
|
'media/libsoundtouch',
|
|
]
|
|
|
|
PARALLEL_DIRS += ['../../' + i for i in external_dirs]
|