| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 active_master=ActiveMaster, | 61 active_master=ActiveMaster, |
| 62 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 62 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 63 recipe=recipe, | 63 recipe=recipe, |
| 64 factory_properties={'path_config': 'kitchen'}, | 64 factory_properties={'path_config': 'kitchen'}, |
| 65 **kwargs) | 65 **kwargs) |
| 66 | 66 |
| 67 | 67 |
| 68 def m_remote_run_chromium_src(recipe, **kwargs): | 68 def m_remote_run_chromium_src(recipe, **kwargs): |
| 69 return remote_run_factory.RemoteRunFactory( | 69 return remote_run_factory.RemoteRunFactory( |
| 70 active_master=ActiveMaster, | 70 active_master=ActiveMaster, |
| 71 repository='https://chromium.googlesource.com/chromium/src.git', | 71 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 72 recipe=recipe, | 72 recipe=recipe, |
| 73 factory_properties={'path_config': 'kitchen'}, | 73 factory_properties={'path_config': 'kitchen'}, |
| 74 use_gitiles=True, | 74 use_gitiles=True, |
| 75 **kwargs) | 75 **kwargs) |
| 76 | 76 |
| 77 | 77 |
| 78 b_ios_simulator = { | 78 b_ios_simulator = { |
| 79 'name': 'ios-simulator', | 79 'name': 'ios-simulator', |
| 80 'factory': base_factory('ios/try'), | 80 'factory': base_factory('ios/try'), |
| 81 } | 81 } |
| (...skipping 274 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 |