Bug 1509724 - Don't include x86_abi_support.asm in libvpx build. r=dmajor

Differential Revision: https://phabricator.services.mozilla.com/D16615

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Thomas Daede 2019-01-16 21:42:38 +00:00
parent 5192d3c194
commit 29393c8e79
2 changed files with 3 additions and 2 deletions

View File

@ -78,6 +78,9 @@ function convert_srcs_to_project_files {
# Remove vpx_config.c.
source_list=$(echo "$source_list" | grep -v 'vpx_config\.c')
# Remove include-only asm files (no object code emitted)
source_list=$(echo "$source_list" | grep -v 'x86_abi_support\.asm')
# The actual ARM files end in .asm. We have rules to translate them to .S
source_list=$(echo "$source_list" | sed s/\.asm\.s$/.asm/)

View File

@ -256,7 +256,6 @@ files = {
'libvpx/vpx_dsp/x86/vpx_subpixel_bilinear_ssse3.asm',
'libvpx/vpx_mem/vpx_mem.c',
'libvpx/vpx_ports/emms.asm',
'libvpx/vpx_ports/x86_abi_support.asm',
'libvpx/vpx_scale/generic/gen_scalers.c',
'libvpx/vpx_scale/generic/vpx_scale.c',
'libvpx/vpx_scale/generic/yv12config.c',
@ -515,7 +514,6 @@ files = {
'libvpx/vpx_dsp/x86/vpx_subpixel_bilinear_ssse3.asm',
'libvpx/vpx_mem/vpx_mem.c',
'libvpx/vpx_ports/emms.asm',
'libvpx/vpx_ports/x86_abi_support.asm',
'libvpx/vpx_scale/generic/gen_scalers.c',
'libvpx/vpx_scale/generic/vpx_scale.c',
'libvpx/vpx_scale/generic/yv12config.c',