| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2011 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 # These modules come from scripts, which must be in the PYTHONPATH. | 10 # These modules come from scripts, which must be in the PYTHONPATH. |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 # Sets up a factory with the steps to pull out a chromium source tree and | 128 # Sets up a factory with the steps to pull out a chromium source tree and |
| 129 # apply a patch from a try job | 129 # apply a patch from a try job |
| 130 trial_chrome_factory = m_chromium_chromiumos.ChromiumOSFactory( | 130 trial_chrome_factory = m_chromium_chromiumos.ChromiumOSFactory( |
| 131 target=None, | 131 target=None, |
| 132 slave_type='CrossTry', | 132 slave_type='CrossTry', |
| 133 tests=[], | 133 tests=[], |
| 134 ) | 134 ) |
| 135 | 135 |
| 136 # Extends that factory with a Cbuildbot build steps to build and test | 136 # Extends that factory with a Cbuildbot build steps to build and test |
| 137 # CrOS using the chrome from the above chromium source tree | 137 # CrOS using the chrome from the above chromium source tree |
| 138 builder_factory = chromeos_factory.ChromeCbuildbotFactory( | 138 builder_factory = chromeos_factory.CbuildbotFactory( |
| 139 params=target, | 139 params=target, |
| 140 buildroot=buildroot, | 140 buildroot=buildroot, |
| 141 crostools_repo=None, | 141 crostools_repo=None, |
| 142 dry_run=True, | 142 dry_run=True, |
| 143 chrome_root='.', # this is where ChromiumOSFactory has put "Chrome" | 143 chrome_root='.', # this is where ChromiumOSFactory has put "Chrome" |
| 144 factory=trial_chrome_factory, | 144 factory=trial_chrome_factory, |
| 145 slave_manager=False, | 145 slave_manager=False, |
| 146 ).get_factory() | 146 ).get_factory() |
| 147 | 147 |
| 148 builder_info = { | 148 builder_info = { |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 ####### PROJECT IDENTITY | 1065 ####### PROJECT IDENTITY |
| 1066 | 1066 |
| 1067 # The 'projectURL' string will be used to provide a link | 1067 # The 'projectURL' string will be used to provide a link |
| 1068 # from buildbot HTML pages to your project's home page. | 1068 # from buildbot HTML pages to your project's home page. |
| 1069 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1069 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1070 | 1070 |
| 1071 # Buildbot master url: | 1071 # Buildbot master url: |
| 1072 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1072 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 1073 | 1073 |
| 1074 # vi: set ts=4 sts=2 sw=2 et: | 1074 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |