summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpetarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-24 22:16:59 +0000
committerpetarj@mips.com <petarj@mips.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-24 22:16:59 +0000
commit8313f1f6ede769f545c7f73e05ccf9762c4d1516 (patch)
treeddec8f50a1903ad8b1ecd8887f791b15f6e44452
parent84d7935abf349364531467e7253715394526dae2 (diff)
downloadchromium_src-8313f1f6ede769f545c7f73e05ccf9762c4d1516.zip
chromium_src-8313f1f6ede769f545c7f73e05ccf9762c4d1516.tar.gz
chromium_src-8313f1f6ede769f545c7f73e05ccf9762c4d1516.tar.bz2
[MIPS] Workaround for linker when use_mojo=1
Issue 353273 is present for target_arch=mipsel, so apply the same workaround for mipsel too. BUG=353273 TEST=build Chromium Linux for mipsel Review URL: https://codereview.chromium.org/209353009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259033 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/content_common.gypi6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/content_common.gypi b/content/content_common.gypi
index 92a6628..785311a 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -504,9 +504,9 @@
'content.gyp:webkit_version',
],
}],
- # Work around for bug in linker used on ia32 machines (gold is not used on
- # ia32 machines). See bug 353273.
- ['use_mojo==1 and OS=="linux" and target_arch=="ia32" and component=="static_library"', {
+ # Work around for bug in linker used on ia32 and mipsel machines (gold is
+ # not used on ia32 and mipsel machines). See bug 353273.
+ ['use_mojo==1 and OS=="linux" and (target_arch=="ia32" or target_arch=="mipsel") and component=="static_library"', {
'link_settings': {
'libraries': [
'<(PRODUCT_DIR)/lib/libmojo_system.so',