2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +04: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/.
|
|
|
|
|
2015-03-03 22:36:00 +03:00
|
|
|
with Files('*'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Video/Audio')
|
|
|
|
|
2013-12-06 15:19:00 +04:00
|
|
|
include('sources.mozbuild')
|
|
|
|
|
|
|
|
EXPORTS.vpx += files['EXPORTS']
|
2013-04-16 23:24:43 +04:00
|
|
|
|
2013-06-11 19:31:11 +04:00
|
|
|
if CONFIG['VPX_NEED_OBJ_INT_EXTRACT']:
|
2013-10-25 03:23:05 +04:00
|
|
|
HOST_SOURCES += [
|
2013-10-25 02:58:17 +04:00
|
|
|
'build/make/obj_int_extract.c',
|
2013-06-11 19:31:11 +04:00
|
|
|
]
|
2013-06-17 23:21:01 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
HostProgram('host_obj_int_extract')
|
2013-11-02 03:44:11 +04:00
|
|
|
|
2013-12-09 16:49:00 +04:00
|
|
|
SOURCES += files['SOURCES']
|
2013-08-22 10:56:02 +04:00
|
|
|
|
2013-12-06 17:16:00 +04:00
|
|
|
if CONFIG['MOZ_VPX_ERROR_CONCEALMENT']:
|
2013-12-06 15:19:00 +04:00
|
|
|
SOURCES += files['ERROR_CONCEALMENT']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
|
|
|
if CONFIG['VPX_X86_ASM'] and CONFIG['OS_TARGET'] == 'WINNT':
|
2013-12-09 08:39:26 +04:00
|
|
|
offset_sources = [
|
2013-12-06 17:16:00 +04:00
|
|
|
'vp8/encoder/vp8_asm_enc_offsets.c',
|
2013-12-06 15:19:00 +04:00
|
|
|
'vpx_scale/vpx_scale_asm_offsets.c',
|
2013-11-29 18:02:00 +04:00
|
|
|
]
|
2013-12-09 08:39:26 +04:00
|
|
|
SOURCES += offset_sources
|
2015-01-08 16:23:00 +03:00
|
|
|
# Bug 934984 - MSVC bustage when /GL is specified
|
2013-12-09 08:39:26 +04:00
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
for s in offset_sources:
|
2015-01-08 16:23:00 +03:00
|
|
|
SOURCES[s].flags += ['-GL-']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
|
|
|
if CONFIG['VPX_X86_ASM']:
|
2013-12-06 15:19:00 +04:00
|
|
|
SOURCES += files['X86_ASM']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
|
|
|
if '64' in CONFIG['OS_TEST']:
|
2013-12-06 15:19:00 +04:00
|
|
|
SOURCES += files['X86-64_ASM']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
2013-12-06 15:19:00 +04:00
|
|
|
# AVX2 only supported on
|
2015-02-17 07:10:00 +03:00
|
|
|
# Darwin and Windows toolchains right now
|
|
|
|
if CONFIG['OS_TARGET'] in ('Darwin', 'WINNT'):
|
2013-12-06 15:19:00 +04:00
|
|
|
SOURCES += files['AVX2']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
2013-12-06 17:16:00 +04:00
|
|
|
#postproc is only enabled on x86 with asm
|
|
|
|
SOURCES += files['VP8_POSTPROC']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
|
|
|
arm_asm_files = []
|
|
|
|
if CONFIG['VPX_ARM_ASM']:
|
2013-12-06 15:19:00 +04:00
|
|
|
arm_asm_files += files['ARM_ASM']
|
2013-11-29 18:02:00 +04:00
|
|
|
|
|
|
|
if CONFIG['VPX_AS_CONVERSION']:
|
|
|
|
GENERATED_SOURCES += [ "%s.%s" % (f, CONFIG['VPX_ASM_SUFFIX'])
|
2013-12-06 15:19:00 +04:00
|
|
|
for f in sorted(arm_asm_files) if f.endswith('.asm')
|
|
|
|
]
|
|
|
|
SOURCES += [
|
|
|
|
f for f in sorted(arm_asm_files) if not f.endswith('.asm')
|
|
|
|
]
|
2013-11-29 18:02:00 +04:00
|
|
|
else:
|
|
|
|
SOURCES += sorted(arm_asm_files)
|
|
|
|
|
2014-11-07 01:50:42 +03:00
|
|
|
for f in SOURCES:
|
|
|
|
if f.endswith('.c') and 'neon' in f:
|
|
|
|
SOURCES[f].flags += ['-march=armv7-a', '-mthumb', '-mfloat-abi=softfp', '-mfpu=neon']
|
|
|
|
|
2013-11-29 18:02:00 +04:00
|
|
|
# boolhuff_armv5te.asm defines the same functions as boolhuff.c instead of
|
|
|
|
# using RTCD, so we have to make sure we only add one of the two.
|
2013-12-06 17:16:00 +04:00
|
|
|
if 'vp8/encoder/arm/armv5te/boolhuff_armv5te.asm' not in arm_asm_files:
|
2013-11-29 18:02:00 +04:00
|
|
|
SOURCES += [
|
|
|
|
'vp8/encoder/boolhuff.c',
|
|
|
|
]
|
|
|
|
|
2013-11-22 18:03:21 +04:00
|
|
|
if CONFIG['GKMEDIAS_SHARED_LIBRARY']:
|
2013-10-24 23:06:19 +04:00
|
|
|
NO_VISIBILITY_FLAGS = True
|
2013-11-19 06:47:14 +04:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'gkmedias'
|
2013-11-27 17:55:07 +04:00
|
|
|
|
|
|
|
DEFINES['HAVE_CONFIG_H'] = 'vpx_config.h'
|
|
|
|
|
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
|
|
# Older versions of the Android NDK don't pre-define anything to indicate
|
|
|
|
# the OS they're on, so do it for them.
|
|
|
|
DEFINES['__linux__'] = True
|
2014-01-09 23:43:29 +04:00
|
|
|
|
|
|
|
if not CONFIG['MOZ_WEBRTC']:
|
|
|
|
SOURCES += [
|
|
|
|
'%s/sources/android/cpufeatures/cpu-features.c' % CONFIG['ANDROID_NDK'],
|
|
|
|
]
|
2014-03-06 02:00:52 +04:00
|
|
|
|
2014-12-18 18:31:46 +03:00
|
|
|
if CONFIG['CLANG_CL'] or not CONFIG['_MSC_VER']:
|
2014-03-06 02:00:52 +04:00
|
|
|
for f in SOURCES:
|
|
|
|
if f.endswith('.c'):
|
|
|
|
if 'sse2' in f:
|
2014-03-20 05:55:00 +04:00
|
|
|
SOURCES[f].flags += CONFIG['SSE2_FLAGS']
|
2014-03-06 02:00:52 +04:00
|
|
|
if 'ssse3' in f:
|
|
|
|
SOURCES[f].flags += ['-mssse3']
|
2014-10-30 07:47:43 +03:00
|
|
|
if 'sse4' in f:
|
|
|
|
SOURCES[f].flags += ['-msse4.1']
|
2014-03-06 02:00:52 +04:00
|
|
|
if 'avx2' in f:
|
|
|
|
SOURCES[f].flags += ['-mavx2']
|
2014-03-16 10:21:32 +04:00
|
|
|
|
|
|
|
# Suppress warnings in third-party code.
|
|
|
|
if CONFIG['GNU_CC']:
|
|
|
|
CFLAGS += ['-Wno-sign-compare']
|