2013-08-14 06:57:26 +00:00
|
|
|
# -*- 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/.
|
2013-08-09 22:01:08 +00:00
|
|
|
|
|
|
|
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']
|
|
|
|
|
2014-01-15 06:21:14 +00:00
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
|
|
external_dirs += ['media/libmkv']
|
|
|
|
|
2013-12-06 13:16:00 +00:00
|
|
|
if CONFIG['MOZ_VPX'] and not CONFIG['MOZ_NATIVE_LIBVPX']:
|
2013-08-09 22:01:08 +00:00
|
|
|
external_dirs += ['media/libvpx']
|
|
|
|
|
|
|
|
if not CONFIG['MOZ_NATIVE_PNG']:
|
|
|
|
external_dirs += ['media/libpng']
|
|
|
|
|
2013-11-28 04:06:59 +00:00
|
|
|
external_dirs += [
|
|
|
|
'media/kiss_fft',
|
2013-11-28 05:09:08 +00:00
|
|
|
'media/libcubeb',
|
2014-02-21 02:01:00 +00:00
|
|
|
'media/libogg',
|
|
|
|
'media/libtheora',
|
2013-11-28 04:06:59 +00:00
|
|
|
'media/libspeex_resampler',
|
2014-05-22 02:42:39 +00:00
|
|
|
'media/libstagefright',
|
2013-11-28 04:06:59 +00:00
|
|
|
'media/libsoundtouch',
|
|
|
|
]
|
2013-08-09 22:01:08 +00:00
|
|
|
|
|
|
|
PARALLEL_DIRS += ['../../' + i for i in external_dirs]
|