| 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 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 target='Debug', | 1198 target='Debug', |
| 1199 builder_name='win_ash', | 1199 builder_name='win_ash', |
| 1200 tests=[ | 1200 tests=[ |
| 1201 'ash_unittests', | 1201 'ash_unittests', |
| 1202 'aura', | 1202 'aura', |
| 1203 'compositor', | 1203 'compositor', |
| 1204 'views', | 1204 'views', |
| 1205 ], | 1205 ], |
| 1206 extra_gyp_defines='use_ash=1') | 1206 extra_gyp_defines='use_ash=1') |
| 1207 | 1207 |
| 1208 # browser_tests run for a hour. Please don't add them to the bot. |
| 1208 b_linux_asan = { | 1209 b_linux_asan = { |
| 1209 'name': 'linux_asan', | 1210 'name': 'linux_asan', |
| 1210 'factory': m_chromium_linux.ChromiumASANFactory( | 1211 'factory': m_chromium_linux.ChromiumASANFactory( |
| 1211 slave_type='BuilderTester', | 1212 slave_type='BuilderTester', |
| 1212 options=[ | 1213 options=[ |
| 1213 '--compiler=goma-clang', | 1214 '--compiler=goma-clang', |
| 1214 'base_unittests', | 1215 'base_unittests', |
| 1215 'browser_tests', | |
| 1216 'cacheinvalidation_unittests', | 1216 'cacheinvalidation_unittests', |
| 1217 'content_browsertests', | 1217 'content_browsertests', |
| 1218 'content_unittests', | 1218 'content_unittests', |
| 1219 'crypto_unittests', | 1219 'crypto_unittests', |
| 1220 'googleurl_unittests', | 1220 'googleurl_unittests', |
| 1221 'gpu_unittests', | 1221 'gpu_unittests', |
| 1222 'ipc_tests', | 1222 'ipc_tests', |
| 1223 'jingle_unittests', | 1223 'jingle_unittests', |
| 1224 'media_unittests', | 1224 'media_unittests', |
| 1225 'net_unittests', | 1225 'net_unittests', |
| 1226 'printing_unittests', | 1226 'printing_unittests', |
| 1227 'remoting_unittests', | 1227 'remoting_unittests', |
| 1228 'safe_browsing_tests', | 1228 'safe_browsing_tests', |
| 1229 'sql_unittests', | 1229 'sql_unittests', |
| 1230 'sync_unit_tests', | 1230 'sync_unit_tests', |
| 1231 'ui_unittests', | 1231 'ui_unittests', |
| 1232 'unit_tests', | 1232 'unit_tests', |
| 1233 ], | 1233 ], |
| 1234 tests=[ | 1234 tests=[ |
| 1235 'base', | 1235 'base', |
| 1236 'browser_tests', | |
| 1237 'cacheinvalidation', | 1236 'cacheinvalidation', |
| 1238 'content_browsertests', | 1237 'content_browsertests', |
| 1239 'crypto', | 1238 'crypto', |
| 1240 #'googleurl', # issue 49580 | 1239 #'googleurl', # issue 49580 |
| 1241 'gpu', | 1240 'gpu', |
| 1242 'jingle', | 1241 'jingle', |
| 1243 'media', | 1242 'media', |
| 1244 'net', | 1243 'net', |
| 1245 'printing', | 1244 'printing', |
| 1246 'remoting', | 1245 'remoting', |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1783 ####### PROJECT IDENTITY | 1782 ####### PROJECT IDENTITY |
| 1784 | 1783 |
| 1785 # The 'projectURL' string will be used to provide a link | 1784 # The 'projectURL' string will be used to provide a link |
| 1786 # from buildbot HTML pages to your project's home page. | 1785 # from buildbot HTML pages to your project's home page. |
| 1787 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1786 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1788 | 1787 |
| 1789 # Buildbot master url: | 1788 # Buildbot master url: |
| 1790 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1789 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 1791 | 1790 |
| 1792 # vi: set ts=4 sts=2 sw=2 et: | 1791 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |