summaryrefslogtreecommitdiffstats
path: root/media/libvorbis/moz.build
blob: af1ca189b4ec5b8c02f3e0ea5ec986c9cf1de253 (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
# -*- 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/.

with Files('*'):
    BUG_COMPONENT = ('Core', 'Audio/Video')

EXPORTS.vorbis += [
    'include/vorbis/codec.h',
    'include/vorbis/vorbisenc.h',
]

UNIFIED_SOURCES += [
    'lib/vorbis_analysis.c',
    'lib/vorbis_bitrate.c',
    'lib/vorbis_block.c',
    'lib/vorbis_envelope.c',
    'lib/vorbis_floor0.c',
    'lib/vorbis_lookup.c',
    'lib/vorbis_lpc.c',
    'lib/vorbis_lsp.c',
    'lib/vorbis_mapping0.c',
    'lib/vorbis_mdct.c',
    'lib/vorbis_psy.c',
    'lib/vorbis_registry.c',
    'lib/vorbis_sharedbook.c',
    'lib/vorbis_smallft.c',
    'lib/vorbis_synthesis.c',
    'lib/vorbisenc.c',
]

# These files can't be unified because of function redefinitions.
SOURCES += [
    'lib/vorbis_codebook.c',
    'lib/vorbis_floor1.c',
    'lib/vorbis_info.c',
    'lib/vorbis_res0.c',
    'lib/vorbis_window.c',
]

LOCAL_INCLUDES += ['lib']

if CONFIG['OS_ARCH'] == 'AIX':
    DEFINES['alloca'] = '__alloca'

if CONFIG['OS_ARCH'] == 'SunOS':
    DEFINES['HAVE_ALLOCA_H'] = True

if CONFIG["OS_ARCH"] == "Linux":
    OS_LIBS += [
        "m",
    ]

# We allow warnings for third-party code that can be updated from upstream.
AllowCompilerWarnings()

FINAL_LIBRARY = 'gkcodecs'
NoVisibilityFlags()

# Suppress warnings in third-party code.
if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
    CFLAGS += ['-Wno-uninitialized']

# Add libFuzzer configuration directives
#include('/tools/fuzzing/libfuzzer-config.mozbuild')