[MIPS] Don't use Gold for mipsel Android

Accidentally enabled Gold for mipsel Android in
https://codereview.chromium.org/2027173002/
Fixing it here.

BUG=webrtc:5977

Review-Url: https://codereview.chromium.org/2048063002
Cr-Original-Commit-Position: refs/heads/master@{#398607}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: cbae59c41c05dcbdd5e245370b45895e4a55d399
This commit is contained in:
milko.leporis 2016-06-08 10:25:28 -07:00 коммит произвёл Commit bot
Родитель 46421cbcf9
Коммит b4f8295b6d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -911,7 +911,7 @@
# are using a custom toolchain and need to control -B in ldflags.
# Do not use 32-bit gold on 32-bit hosts as it runs out address space
# for component=static_library builds.
['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=="arm" or target_arch=="mipsel" or (target_arch=="ia32" and host_arch=="x64"))', {
['((OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=="arm" or (target_arch=="ia32" and host_arch=="x64"))) or (OS=="linux" and target_arch=="mipsel")', {
'linux_use_bundled_gold%': 1,
}, {
'linux_use_bundled_gold%': 0,