| 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 |
| 11 helper = master_config.Helper(defaults) | 11 helper = master_config.Helper(defaults) |
| 12 B = helper.Builder | 12 B = helper.Builder |
| 13 F = helper.Factory | 13 F = helper.Factory |
| 14 S = helper.Scheduler | 14 S = helper.Scheduler |
| 15 | 15 |
| 16 def linux(): return chromium_factory.ChromiumFactory('src/build', 'linux2') | 16 def linux(): return chromium_factory.ChromiumFactory('src/build', 'linux2') |
| 17 | 17 |
| 18 | 18 |
| 19 ################################################################################ | 19 ################################################################################ |
| 20 ## Release | 20 ## Release |
| 21 ################################################################################ | 21 ################################################################################ |
| 22 | 22 |
| 23 defaults['category'] = '9content shell' | 23 defaults['category'] = '9content shell' |
| 24 | 24 |
| 25 # | 25 # |
| 26 # Main release scheduler for webkit | 26 # Main release scheduler for WebKit |
| 27 # | 27 # |
| 28 S('s1_contentshell_webkit_rel', branch='trunk', treeStableTimer=60) | 28 S('s1_contentshell_webkit_rel', branch='trunk', treeStableTimer=60) |
| 29 | 29 |
| 30 # | 30 # |
| 31 # Content Shell Layouttests | 31 # Content Shell Layouttests |
| 32 # | 32 # |
| 33 | 33 |
| 34 B('WebKit (Content Shell) Linux', 'f_contentshell_linux_rel', | 34 B('WebKit (Content Shell) Linux', 'f_contentshell_linux_rel', |
| 35 scheduler='s1_contentshell_webkit_rel') | 35 scheduler='s1_contentshell_webkit_rel') |
| 36 | 36 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 49 ], | 49 ], |
| 50 'additional_drt_flag': '--dump-render-tree', | 50 'additional_drt_flag': '--dump-render-tree', |
| 51 'archive_webkit_results': True, | 51 'archive_webkit_results': True, |
| 52 'test_results_server': 'test-results.appspot.com', | 52 'test_results_server': 'test-results.appspot.com', |
| 53 'driver_name': 'content_shell' | 53 'driver_name': 'content_shell' |
| 54 })) | 54 })) |
| 55 | 55 |
| 56 | 56 |
| 57 def Update(config, active_master, c): | 57 def Update(config, active_master, c): |
| 58 return helper.Update(c) | 58 return helper.Update(c) |
| OLD | NEW |