Build fix: no gold on any ChromeOS build.

On a Google-internal ChromeOS builder make seems to exit with a
failure code no error message I can identify.

git-svn-id: http://src.chromium.org/svn/trunk/src/build@121264 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
evan@chromium.org 2012-02-09 19:26:27 +00:00
Родитель 26bc9879f9
Коммит a3be503eb9
1 изменённых файлов: 2 добавлений и 6 удалений

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

@ -389,18 +389,14 @@
# linux_use_gold_binary: whether to use the binary checked into
# third_party/gold.
['host_arch=="x64"', {
'linux_use_gold_binary%': 1,
}, {
'linux_use_gold_binary%': 0,
}],
# 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', {
'linux_use_gold_binary%': 1,
'linux_use_gold_flags%': 1,
}, {
'linux_use_gold_binary%': 0,
'linux_use_gold_flags%': 0,
}],