diff options
-rw-r--r-- | build/common.gypi | 4 |
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, |