Chromium Code Reviews| Index: masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py |
| =================================================================== |
| --- masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py (revision 172130) |
| +++ masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py (working copy) |
| @@ -43,11 +43,16 @@ |
| 'gpu_tests', |
| 'gpu_throughput', |
| ], |
| - options=['--compiler=goma', 'chromium_gpu_builder'], |
| + options=[ |
| + '--build-tool=ninja', |
| + '--compiler=goma', |
| + 'chromium_gpu_builder', |
|
iannucci
2012/12/10 22:08:15
Not to be pedantic, but I think we're trying to co
tony
2012/12/10 22:15:17
Ok, I've added '--' before any build targets.
|
| + ], |
| factory_properties={ |
| - 'generate_gtest_json': True, |
| - 'perf_id': 'gpu-webkit-linux-nvidia', |
| - 'show_perf_results': True, |
| + 'generate_gtest_json': True, |
| + 'perf_id': 'gpu-webkit-linux-nvidia', |
| + 'show_perf_results': True, |
| + 'gclient_env': { 'GYP_GENERATORS': 'ninja' }, |
| })) |
| ################################################################################ |
| @@ -67,8 +72,15 @@ |
| 'gl_tests', |
| 'gpu_tests', |
| ], |
| - options=['--compiler=goma', 'chromium_gpu_debug_builder'], |
| - factory_properties={'generate_gtest_json': True})) |
| + options=[ |
| + '--build-tool=ninja', |
| + '--compiler=goma', |
| + 'chromium_gpu_debug_builder' |
| + ], |
| + factory_properties={ |
| + 'generate_gtest_json': True, |
| + 'gclient_env': { 'GYP_GENERATORS': 'ninja' }, |
| + })) |
| def Update(config, active_master, c): |