| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 from master import master_config | 5 from master import master_config |
| 6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
| 7 | 7 |
| 8 defaults = {} | 8 defaults = {} |
| 9 | 9 |
| 10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 # Main release scheduler for chromium | 26 # Main release scheduler for chromium |
| 27 # | 27 # |
| 28 S('s3_chromium_rel', branch='src', treeStableTimer=60) | 28 S('s3_chromium_rel', branch='src', treeStableTimer=60) |
| 29 | 29 |
| 30 # | 30 # |
| 31 # Linux Rel Builder | 31 # Linux Rel Builder |
| 32 # | 32 # |
| 33 B('Webkit Linux (deps)', 'f_webkit_linux_rel', scheduler='s3_chromium_rel', | 33 B('Webkit Linux (deps)', 'f_webkit_linux_rel', scheduler='s3_chromium_rel', |
| 34 auto_reboot=True) | 34 auto_reboot=True) |
| 35 F('f_webkit_linux_rel', linux().ChromiumFactory( | 35 F('f_webkit_linux_rel', linux().ChromiumFactory( |
| 36 tests=['test_shell', 'webkit', 'webkit_gpu', 'webkit_unit'], | 36 tests=['test_shell', 'webkit_lint', 'webkit', 'webkit_gpu', 'webkit_unit'], |
| 37 options=['--compiler=goma', 'test_shell', 'test_shell_tests', | 37 options=['--compiler=goma', 'test_shell', 'test_shell_tests', |
| 38 'webkit_unit_tests', 'DumpRenderTree'], | 38 'webkit_unit_tests', 'DumpRenderTree'], |
| 39 factory_properties={'archive_webkit_results': True, | 39 factory_properties={'archive_webkit_results': True, |
| 40 'test_results_server': 'test-results.appspot.com'})) | 40 'test_results_server': 'test-results.appspot.com'})) |
| 41 | 41 |
| 42 def Update(config, active_master, c): | 42 def Update(config, active_master, c): |
| 43 return helper.Update(c) | 43 return helper.Update(c) |
| OLD | NEW |