summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 09:20:40 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 09:20:40 +0000
commit1d4ace78936a9722a653d04b48e0e685131b8119 (patch)
tree7220e5fc785df557e4544e1082840d83bd8a89b5 /build
parent2d5115433d38fa4f1e70cb7f3164cdb4d26624e2 (diff)
downloadchromium_src-1d4ace78936a9722a653d04b48e0e685131b8119.zip
chromium_src-1d4ace78936a9722a653d04b48e0e685131b8119.tar.gz
chromium_src-1d4ace78936a9722a653d04b48e0e685131b8119.tar.bz2
Linux: Use gold for 32-bit builds as well.
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/9580032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125369 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 8fcf049..a27bfcf 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -407,7 +407,7 @@
# linux_use_gold_binary: whether to use the binary checked into
# third_party/gold.
- ['host_arch=="x64" and OS!="android"', {
+ ['OS=="linux"', {
'linux_use_gold_binary%': 1,
}, {
'linux_use_gold_binary%': 0,
@@ -416,7 +416,7 @@
# linux_use_gold_flags: whether to use build flags that rely on gold.
# On by default for x64 Linux. Temporarily off for ChromeOS as
# it failed on a buildbot.
- ['host_arch=="x64" and chromeos==0 and OS!="android"', {
+ ['OS=="linux" and chromeos==0', {
'linux_use_gold_flags%': 1,
}, {
'linux_use_gold_flags%': 0,