| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 active_master=ActiveMaster, | 64 active_master=ActiveMaster, |
| 65 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 65 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 66 recipe=recipe, | 66 recipe=recipe, |
| 67 factory_properties={'path_config': 'kitchen'}, | 67 factory_properties={'path_config': 'kitchen'}, |
| 68 **kwargs) | 68 **kwargs) |
| 69 | 69 |
| 70 | 70 |
| 71 def m_remote_run_chromium_src(recipe, **kwargs): | 71 def m_remote_run_chromium_src(recipe, **kwargs): |
| 72 return remote_run_factory.RemoteRunFactory( | 72 return remote_run_factory.RemoteRunFactory( |
| 73 active_master=ActiveMaster, | 73 active_master=ActiveMaster, |
| 74 repository='https://chromium.googlesource.com/chromium/src.git', | 74 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 75 recipe=recipe, | 75 recipe=recipe, |
| 76 factory_properties={'path_config': 'kitchen'}, | 76 factory_properties={'path_config': 'kitchen'}, |
| 77 use_gitiles=True, | 77 use_gitiles=True, |
| 78 **kwargs) | 78 **kwargs) |
| 79 | 79 |
| 80 | 80 |
| 81 for targ in ('_rel', '_dbg'): | 81 for targ in ('_rel', '_dbg'): |
| 82 chromium_builders.extend([{ | 82 chromium_builders.extend([{ |
| 83 'name': 'win_chromium%s_ng' % targ, | 83 'name': 'win_chromium%s_ng' % targ, |
| 84 'factory': m_remote_run_chromium_src( | 84 'factory': m_remote_run_chromium_src( |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 # base.make_stop_form = hack_stop(base.make_stop_form) | 381 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 382 | 382 |
| 383 | 383 |
| 384 ####### PROJECT IDENTITY | 384 ####### PROJECT IDENTITY |
| 385 | 385 |
| 386 # The 'projectURL' string will be used to provide a link | 386 # The 'projectURL' string will be used to provide a link |
| 387 # from buildbot HTML pages to your project's home page. | 387 # from buildbot HTML pages to your project's home page. |
| 388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 389 | 389 |
| 390 # vi: set ts=4 sts=2 sw=2 et: | 390 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |