| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 'net_unittests', | 158 'net_unittests', |
| 159 'sql_unittests', | 159 'sql_unittests', |
| 160 'ui_tests', | 160 'ui_tests', |
| 161 'unit_tests', | 161 'unit_tests', |
| 162 # dbus_unittests is not sharded because it takes less than 1 second to run. | 162 # dbus_unittests is not sharded because it takes less than 1 second to run. |
| 163 'dbus_unittests'] | 163 'dbus_unittests'] |
| 164 | 164 |
| 165 # Linux builder | 165 # Linux builder |
| 166 linux_tests = [ | 166 linux_tests = [ |
| 167 'check_deps', | 167 'check_deps', |
| 168 'check_licenses', |
| 168 'base', | 169 'base', |
| 169 'net', | 170 'net', |
| 170 'googleurl', | 171 'googleurl', |
| 171 'unit', | 172 'unit', |
| 172 'ui', | 173 'ui', |
| 173 'browser_tests', | 174 'browser_tests', |
| 174 'test_shell', | 175 'test_shell', |
| 175 'webkit_unit', | 176 'webkit_unit', |
| 176 'media', | 177 'media', |
| 177 'printing', | 178 'printing', |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 ####### PROJECT IDENTITY | 951 ####### PROJECT IDENTITY |
| 951 | 952 |
| 952 # The 'projectURL' string will be used to provide a link | 953 # The 'projectURL' string will be used to provide a link |
| 953 # from buildbot HTML pages to your project's home page. | 954 # from buildbot HTML pages to your project's home page. |
| 954 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 955 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 955 | 956 |
| 956 # Buildbot master url: | 957 # Buildbot master url: |
| 957 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 958 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 958 | 959 |
| 959 # vi: set ts=4 sts=2 sw=2 et: | 960 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |