Build fix for MIPS Android Webview build.

Excluding optimizations to support MIPS32R6 platform for Android Webview build (see also https://code.google.com/p/webrtc/source/detail?r=7580).

R=andrew@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/32459004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7729 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org
2014-11-21 16:28:32 +00:00
parent bdcf38c894
commit 1153322cf8
4 changed files with 5 additions and 6 deletions

View File

@@ -110,7 +110,6 @@
# Define MIPS architecture variant, MIPS DSP variant and MIPS FPU
# This may be subject to change in accordance to Chromium's MIPS flags
'mips_arch_variant%': 'r1',
'mips_dsp_rev%': 0,
'mips_fpu%' : 1,
'enable_android_opensl%': 1,
@@ -274,7 +273,7 @@
}],
],
}],
['target_arch=="mipsel" and mips_arch_variant!="r6"', {
['target_arch=="mipsel" and mips_arch_variant!="r6" and android_webview_build==0', {
'defines': [
'MIPS32_LE',
],

View File

@@ -140,7 +140,7 @@
}],
], # conditions
}],
['target_arch=="mipsel" and mips_arch_variant!="r6"', {
['target_arch=="mipsel" and mips_arch_variant!="r6" and android_webview_build==0', {
'sources': [
'signal_processing/include/spl_inl_mips.h',
'signal_processing/complex_bit_reverse_mips.c',

View File

@@ -87,7 +87,7 @@
'pitch_filter_c.c',
],
}],
['target_arch=="mipsel" and mips_arch_variant!="r6"', {
['target_arch=="mipsel" and mips_arch_variant!="r6" and android_webview_build==0', {
'sources': [
'entropy_coding_mips.c',
'filters_mips.c',

View File

@@ -114,7 +114,7 @@
'ns/nsx_defines.h',
],
'conditions': [
['target_arch=="mipsel" and mips_arch_variant!="r6"', {
['target_arch=="mipsel" and mips_arch_variant!="r6" and android_webview_build==0', {
'sources': [
'ns/nsx_core_mips.c',
],
@@ -141,7 +141,7 @@
['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
'dependencies': ['audio_processing_neon',],
}],
['target_arch=="mipsel" and mips_arch_variant!="r6"', {
['target_arch=="mipsel" and mips_arch_variant!="r6" and android_webview_build==0', {
'sources': [
'aecm/aecm_core_mips.c',
],