mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0f4c5d9244
* * * Bug 1047267 - To fold with "Move remaining OS_LIBS and EXTRA_LIBS to moz.build"
51 lines
1.3 KiB
Python
51 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 = []
|
|
|
|
DIRS += [
|
|
'sqlite',
|
|
]
|
|
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',
|
|
]
|
|
|
|
DIRS += ['../../' + i for i in external_dirs]
|