Chromium Code Reviews| Index: scripts/slave/compile.py |
| diff --git a/scripts/slave/compile.py b/scripts/slave/compile.py |
| index 8ad7685dee42da8bb18ba6fb47fd14e0a8b3e678..20732ca0715913350dda2567eebbfa28c183b5ea 100755 |
| --- a/scripts/slave/compile.py |
| +++ b/scripts/slave/compile.py |
| @@ -110,6 +110,13 @@ def goma_setup(options, env): |
| env['GOMA_DEPS_CACHE_DIR'] = ( |
| options.goma_deps_cache_dir or options.target_output_dir) |
| + # Workaround for crbug.com/630502. Compiling |
|
Yoshisato Yanagisawa
2016/08/01 09:42:50
maybe HACK?
shinyak (Google)
2016/08/01 09:52:50
Done.
|
| + # tools/ipc_fuzzer/message_lib/message_names.cc is always slow on Mac. |
| + # TODO(shinyak): Remove this when gn configuration is fixed. |
| + if chromium_utils.IsMac(): |
| + env['GOMA_FALLBACK_INPUT_FILES'] = ( |
| + '../../tools/ipc_fuzzer/message_lib/message_names.cc') |
| + |
| if options.goma_hermetic: |
| env['GOMA_HERMETIC'] = options.goma_hermetic |
| if options.goma_enable_remote_link: |