2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-07-02 07:14:49 +03:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
# Due to duplicate file names, we compile libavutil/x86/cpu.c in its own
|
|
|
|
# moz.build file.
|
|
|
|
DIRS += ['libavutil/x86']
|
|
|
|
|
|
|
|
EXPORTS.libavcodec += [
|
|
|
|
'libavcodec/avfft.h',
|
|
|
|
'libavcodec/fft.h'
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.libavutil += [
|
|
|
|
'libavutil/mem.h'
|
|
|
|
]
|
|
|
|
|
2015-08-07 05:39:26 +03:00
|
|
|
# These sources can't be unified because of macro name conflicts or needing to
|
|
|
|
# compile asm files separately.
|
2015-07-02 07:14:49 +03:00
|
|
|
SOURCES += [
|
|
|
|
'libavcodec/avfft.c',
|
|
|
|
'libavcodec/fft_fixed.c',
|
2015-08-07 05:39:26 +03:00
|
|
|
'libavcodec/x86/fft.asm',
|
|
|
|
'libavutil/dict.c',
|
|
|
|
'libavutil/opt.c',
|
|
|
|
'libavutil/x86/cpuid.asm',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2015-07-02 07:14:49 +03:00
|
|
|
'libavcodec/fft_float.c',
|
|
|
|
'libavcodec/rdft.c',
|
|
|
|
'libavcodec/x86/fft_init.c',
|
|
|
|
'libavutil/avstring.c',
|
|
|
|
'libavutil/cpu.c',
|
|
|
|
'libavutil/error.c',
|
|
|
|
'libavutil/eval.c',
|
|
|
|
'libavutil/file.c',
|
|
|
|
'libavutil/file_open.c',
|
|
|
|
'libavutil/intmath.c',
|
|
|
|
'libavutil/log.c',
|
|
|
|
'libavutil/log2_tab.c',
|
|
|
|
'libavutil/mathematics.c',
|
|
|
|
'libavutil/mem.c',
|
|
|
|
'libavutil/parseutils.c',
|
|
|
|
'libavutil/random_seed.c',
|
|
|
|
'libavutil/rational.c',
|
|
|
|
'libavutil/sha.c',
|
|
|
|
]
|
|
|
|
|
2015-07-10 01:29:47 +03:00
|
|
|
# Dummy functions are required for windows NoOpt/PGO builds.
|
|
|
|
if CONFIG['_MSC_VER']:
|
2015-08-07 05:39:26 +03:00
|
|
|
UNIFIED_SOURCES += [
|
2015-07-10 01:29:47 +03:00
|
|
|
'avfft_dummy_funcs.c'
|
|
|
|
]
|
|
|
|
|
2015-07-02 07:14:49 +03:00
|
|
|
# OS X requires a special header to make sure symbols are exported publicly in
|
|
|
|
# the lgpl shared library, since it does not yet use system headers. This is
|
|
|
|
# also used on linux for the time being, to avoid having to patch libav code.
|
|
|
|
#
|
|
|
|
# TODO: Remove header and patch libav once OS X supports system headers
|
|
|
|
if CONFIG['OS_ARCH'] != 'WINNT':
|
|
|
|
SOURCES['libavcodec/avfft.c'].flags += ['-include', 'avfft_perms.h']
|
|
|
|
|
2015-10-20 04:05:20 +03:00
|
|
|
# We allow warnings for third-party code that can be updated from upstream.
|
2015-08-28 06:44:53 +03:00
|
|
|
ALLOW_COMPILER_WARNINGS = True
|
|
|
|
|
2016-04-11 08:25:56 +03:00
|
|
|
if CONFIG['MOZ_DEBUG']:
|
|
|
|
# Enable all assertions in debug builds.
|
|
|
|
DEFINES['ASSERT_LEVEL'] = 2
|
|
|
|
elif not CONFIG['RELEASE_BUILD']:
|
|
|
|
# Enable fast assertions in opt builds of Nightly and Aurora.
|
|
|
|
DEFINES['ASSERT_LEVEL'] = 1
|
|
|
|
|
2015-07-02 07:14:49 +03:00
|
|
|
include("libavcommon.mozbuild")
|