| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 return remote_run_factory.RemoteRunFactory( | 62 return remote_run_factory.RemoteRunFactory( |
| 63 active_master=ActiveMaster, | 63 active_master=ActiveMaster, |
| 64 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 64 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 65 recipe=recipe, | 65 recipe=recipe, |
| 66 factory_properties={'path_config': 'kitchen'}, | 66 factory_properties={'path_config': 'kitchen'}, |
| 67 **kwargs) | 67 **kwargs) |
| 68 | 68 |
| 69 | 69 |
| 70 b_ios_simulator = { | 70 b_ios_simulator = { |
| 71 'name': 'ios-simulator', | 71 'name': 'ios-simulator', |
| 72 'factory': m_remote_run('ios/try'), | 72 'factory': baseFactory('ios/try'), |
| 73 } | 73 } |
| 74 | 74 |
| 75 b_ios_simulator_cronet = { | 75 b_ios_simulator_cronet = { |
| 76 'name': 'ios-simulator-cronet', | 76 'name': 'ios-simulator-cronet', |
| 77 'factory': m_remote_run('ios/try'), | 77 'factory': baseFactory('ios/try'), |
| 78 } | 78 } |
| 79 | 79 |
| 80 b_ios_simulator_swarming = { | 80 b_ios_simulator_swarming = { |
| 81 'name': 'ios-simulator-swarming', | 81 'name': 'ios-simulator-swarming', |
| 82 'factory': m_remote_run('ios/try'), | 82 'factory': baseFactory('ios/try'), |
| 83 } | 83 } |
| 84 | 84 |
| 85 b_ios_device = { | 85 b_ios_device = { |
| 86 'name': 'ios-device', | 86 'name': 'ios-device', |
| 87 'factory': m_remote_run('ios/try'), | 87 'factory': baseFactory('ios/try'), |
| 88 } | 88 } |
| 89 | 89 |
| 90 chromium_builders = [] | 90 chromium_builders = [] |
| 91 | 91 |
| 92 for targ in ('_rel', '_dbg'): | 92 for targ in ('_rel', '_dbg'): |
| 93 chromium_builders.extend([{ | 93 chromium_builders.extend([{ |
| 94 'name': 'mac_chromium_compile%s_ng' % targ, | 94 'name': 'mac_chromium_compile%s_ng' % targ, |
| 95 'factory': m_remote_run( | 95 'factory': m_remote_run( |
| 96 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), | 96 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), |
| 97 'slavebuilddir': 'remote_run' | 97 'slavebuilddir': 'remote_run' |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 # base.make_stop_form = hack_stop(base.make_stop_form) | 356 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 357 | 357 |
| 358 | 358 |
| 359 ####### PROJECT IDENTITY | 359 ####### PROJECT IDENTITY |
| 360 | 360 |
| 361 # The 'projectURL' string will be used to provide a link | 361 # The 'projectURL' string will be used to provide a link |
| 362 # from buildbot HTML pages to your project's home page. | 362 # from buildbot HTML pages to your project's home page. |
| 363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 364 | 364 |
| 365 # vi: set ts=4 sts=2 sw=2 et: | 365 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |