Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 from master import master_config | 6 from master import master_config |
| 7 from master.factory import chromium_factory | 7 from master.factory import chromium_factory |
| 8 | 8 |
| 9 defaults = {} | 9 defaults = {} |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 36 auto_reboot=False) | 36 auto_reboot=False) |
| 37 F('f_gpu_linux_rel', linux().ChromiumWebkitLatestFactory( | 37 F('f_gpu_linux_rel', linux().ChromiumWebkitLatestFactory( |
| 38 target='Release', | 38 target='Release', |
| 39 tests=[ | 39 tests=[ |
| 40 'gl_tests', | 40 'gl_tests', |
| 41 'gpu_frame_rate', | 41 'gpu_frame_rate', |
| 42 'gpu_latency', | 42 'gpu_latency', |
| 43 'gpu_tests', | 43 'gpu_tests', |
| 44 'gpu_throughput', | 44 'gpu_throughput', |
| 45 ], | 45 ], |
| 46 options=['--compiler=goma', 'chromium_gpu_builder'], | 46 options=[ |
| 47 '--build-tool=ninja', | |
| 48 '--compiler=goma', | |
| 49 '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.
| |
| 50 ], | |
| 47 factory_properties={ | 51 factory_properties={ |
| 48 'generate_gtest_json': True, | 52 'generate_gtest_json': True, |
| 49 'perf_id': 'gpu-webkit-linux-nvidia', | 53 'perf_id': 'gpu-webkit-linux-nvidia', |
| 50 'show_perf_results': True, | 54 'show_perf_results': True, |
| 55 'gclient_env': { 'GYP_GENERATORS': 'ninja' }, | |
| 51 })) | 56 })) |
| 52 | 57 |
| 53 ################################################################################ | 58 ################################################################################ |
| 54 ## Debug | 59 ## Debug |
| 55 ################################################################################ | 60 ################################################################################ |
| 56 | 61 |
| 57 # | 62 # |
| 58 # Main debug scheduler for webkit | 63 # Main debug scheduler for webkit |
| 59 # | 64 # |
| 60 S('s9_gpu_linux_webkit_dbg', branch='trunk', treeStableTimer=60) | 65 S('s9_gpu_linux_webkit_dbg', branch='trunk', treeStableTimer=60) |
| 61 | 66 |
| 62 B('GPU Linux (dbg) (NVIDIA)', 'f_gpu_linux_dbg', | 67 B('GPU Linux (dbg) (NVIDIA)', 'f_gpu_linux_dbg', |
| 63 scheduler='s9_gpu_linux_webkit_dbg', auto_reboot=False) | 68 scheduler='s9_gpu_linux_webkit_dbg', auto_reboot=False) |
| 64 F('f_gpu_linux_dbg', linux().ChromiumWebkitLatestFactory( | 69 F('f_gpu_linux_dbg', linux().ChromiumWebkitLatestFactory( |
| 65 target='Debug', | 70 target='Debug', |
| 66 tests=[ | 71 tests=[ |
| 67 'gl_tests', | 72 'gl_tests', |
| 68 'gpu_tests', | 73 'gpu_tests', |
| 69 ], | 74 ], |
| 70 options=['--compiler=goma', 'chromium_gpu_debug_builder'], | 75 options=[ |
| 71 factory_properties={'generate_gtest_json': True})) | 76 '--build-tool=ninja', |
| 77 '--compiler=goma', | |
| 78 'chromium_gpu_debug_builder' | |
| 79 ], | |
| 80 factory_properties={ | |
| 81 'generate_gtest_json': True, | |
| 82 'gclient_env': { 'GYP_GENERATORS': 'ninja' }, | |
| 83 })) | |
| 72 | 84 |
| 73 | 85 |
| 74 def Update(config, active_master, c): | 86 def Update(config, active_master, c): |
| 75 return helper.Update(c) | 87 return helper.Update(c) |
| OLD | NEW |