diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-05 00:46:14 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-05 00:46:14 +0000 |
commit | b309610f52d8e5ec9c0c6c3c1cab0130c2c0cfde (patch) | |
tree | 8e8bc6231f9e0370803c997da05aba847b0ed05c /build/common.gypi | |
parent | 86f61b88a0feab0caefa7bae49e141960c415181 (diff) | |
download | chromium_src-b309610f52d8e5ec9c0c6c3c1cab0130c2c0cfde.zip chromium_src-b309610f52d8e5ec9c0c6c3c1cab0130c2c0cfde.tar.gz chromium_src-b309610f52d8e5ec9c0c6c3c1cab0130c2c0cfde.tar.bz2 |
Linux: Do not pass --reduce-memory-overheads to the linker on CrOS.
BUG=360082
TBR=vapier@chromium.org
Review URL: https://codereview.chromium.org/226013003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@261943 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index bf028f8..5a8ec83 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -3799,7 +3799,10 @@ ['linux_dump_symbols==1', { 'cflags': [ '-g' ], 'conditions': [ - ['linux_use_gold_binary==0 and OS!="android"', { + # TODO(thestig) We should not need to specify chromeos==0 here, + # but somehow ChromeOS uses gold despite linux_use_gold_binary==0. + # http://crbug.com./360082 + ['linux_use_gold_binary==0 and chromeos==0 and OS!="android"', { 'target_conditions': [ ['_toolset=="target"', { 'ldflags': [ |