summaryrefslogtreecommitdiffstats
path: root/config/external/moz.build
blob: 0125335547a0031aab6f3c620c0e8402e084f898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- Mode: python; 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 += [
    'lgpllibs',
    'sqlite',
]
if not CONFIG['MOZ_SYSTEM_JPEG']:
    external_dirs += ['media/libjpeg']

if CONFIG['MOZ_UPDATER']:
    if not CONFIG['MOZ_SYSTEM_BZ2']:
        external_dirs += ['modules/libbz2']

# There's no "native" brotli or woff2 yet, but probably in the future...
external_dirs += ['modules/brotli']
external_dirs += ['modules/woff2']

if CONFIG['MOZ_VORBIS']:
    external_dirs += ['media/libvorbis']

if CONFIG['MOZ_TREMOR']:
    external_dirs += ['media/libtremor']

if CONFIG['MOZ_WEBM_ENCODER']:
    external_dirs += ['media/libmkv']

if not CONFIG['MOZ_SYSTEM_LIBVPX']:
    external_dirs += ['media/libvpx']

if CONFIG['MOZ_AV1']:
    external_dirs += ['media/libaom']

external_dirs += ['media/libpng']

external_dirs += ['media/libwebp']

if CONFIG['CPU_ARCH'] == 'arm':
    external_dirs += ['media/openmax_dl']

if CONFIG['MOZ_WEBSPEECH_POCKETSPHINX']:
    external_dirs += [
        'media/sphinxbase',
        'media/pocketsphinx',
    ]

if CONFIG['MOZ_FFVPX']:
    external_dirs += ['media/ffvpx']

external_dirs += [
    'media/kiss_fft',
    'media/libcubeb',
    'media/libnestegg',
    'media/libogg',
    'media/libopus',
    'media/libtheora',
    'media/libspeex_resampler',
    'media/libstagefright',
    'media/libsoundtouch',
    'media/psshparser'
]

if CONFIG['MOZ_LINKER']:
    external_dirs += ['modules/xz-embedded']

DIRS += ['../../' + i for i in external_dirs]