| Index: scripts/slave/recipes/chromium_gn.py
|
| diff --git a/scripts/slave/recipes/chromium_gn.py b/scripts/slave/recipes/chromium_gn.py
|
| index 9e9163c5ea97511c329f22435e0df1a13d106bec..0ca9dbc2ea6076b09f58a5d7de47d80e7098e7ce 100644
|
| --- a/scripts/slave/recipes/chromium_gn.py
|
| +++ b/scripts/slave/recipes/chromium_gn.py
|
| @@ -168,20 +168,6 @@ BUILDERS = {
|
| },
|
| },
|
| },
|
| - 'chromium.fyi': {
|
| - 'builders': {
|
| - 'Windows GN': {
|
| - 'chromium_config_kwargs': {
|
| - 'BUILD_CONFIG': 'Release',
|
| - },
|
| - },
|
| - 'Windows GN (dbg)': {
|
| - 'chromium_config_kwargs': {
|
| - 'BUILD_CONFIG': 'Debug',
|
| - },
|
| - },
|
| - },
|
| - },
|
| }
|
|
|
| def GenSteps(api):
|
| @@ -227,9 +213,10 @@ def GenSteps(api):
|
| # TODO(scottmg): goma doesn't work on windows GN builds yet.
|
| is_windows = 'Windows' in buildername
|
| api.chromium.run_gn(use_goma=not is_windows)
|
| - if is_windows:
|
| - api.chromium.c.compile_py.compiler = None
|
| - api.chromium.c.compile_py.goma_dir = None
|
| + # TODO(dpranke): reenable when we have bots again.
|
| + #if is_windows:
|
| + # api.chromium.c.compile_py.compiler = None
|
| + # api.chromium.c.compile_py.goma_dir = None
|
|
|
| api.chromium.compile(targets=['all'])
|
|
|
|
|