| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 **kwargs) | 78 **kwargs) |
| 79 | 79 |
| 80 | 80 |
| 81 def m_remote_run_chromium_src(recipe, **kwargs): | 81 def m_remote_run_chromium_src(recipe, **kwargs): |
| 82 # Disable "max time without output" timeout if total build timeout | 82 # Disable "max time without output" timeout if total build timeout |
| 83 # is in effect. | 83 # is in effect. |
| 84 if 'max_time' in kwargs and 'timeout' not in kwargs: | 84 if 'max_time' in kwargs and 'timeout' not in kwargs: |
| 85 kwargs['timeout'] = None | 85 kwargs['timeout'] = None |
| 86 return remote_run_factory.RemoteRunFactory( | 86 return remote_run_factory.RemoteRunFactory( |
| 87 active_master=ActiveMaster, | 87 active_master=ActiveMaster, |
| 88 repository='https://chromium.googlesource.com/chromium/src.git', | 88 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 89 recipe=recipe, | 89 recipe=recipe, |
| 90 factory_properties={'path_config': 'kitchen'}, | 90 factory_properties={'path_config': 'kitchen'}, |
| 91 use_gitiles=True, | 91 use_gitiles=True, |
| 92 **kwargs) | 92 **kwargs) |
| 93 | 93 |
| 94 | 94 |
| 95 for targ in ('_rel', '_dbg'): | 95 for targ in ('_rel', '_dbg'): |
| 96 chromium_builders.extend([{ | 96 chromium_builders.extend([{ |
| 97 'name': 'linux_chromium_compile%s_ng' % targ, | 97 'name': 'linux_chromium_compile%s_ng' % targ, |
| 98 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600), | 98 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600), |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 # base.make_stop_form = hack_stop(base.make_stop_form) | 551 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 552 | 552 |
| 553 | 553 |
| 554 ####### PROJECT IDENTITY | 554 ####### PROJECT IDENTITY |
| 555 | 555 |
| 556 # The 'projectURL' string will be used to provide a link | 556 # The 'projectURL' string will be used to provide a link |
| 557 # from buildbot HTML pages to your project's home page. | 557 # from buildbot HTML pages to your project's home page. |
| 558 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 558 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 559 | 559 |
| 560 # vi: set ts=4 sts=2 sw=2 et: | 560 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |