| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes import svnpoller | 6 from buildbot.changes import svnpoller |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 'browser_tests', | 282 'browser_tests', |
| 283 'cacheinvalidation_unittests', | 283 'cacheinvalidation_unittests', |
| 284 'cc_unittests', | 284 'cc_unittests', |
| 285 'chromedriver_tests', | 285 'chromedriver_tests', |
| 286 'chromedriver2_unittests', | 286 'chromedriver2_unittests', |
| 287 'components_unittests', | 287 'components_unittests', |
| 288 'content_browsertests', | 288 'content_browsertests', |
| 289 'content_unittests', | 289 'content_unittests', |
| 290 'crypto_unittests', | 290 'crypto_unittests', |
| 291 'device_unittests', | 291 'device_unittests', |
| 292 'events_unittests', |
| 292 'gpu_unittests', | 293 'gpu_unittests', |
| 293 'jingle_unittests', | 294 'jingle_unittests', |
| 294 'media_unittests', | 295 'media_unittests', |
| 295 'net_unittests', | 296 'net_unittests', |
| 296 'ppapi_unittests', | 297 'ppapi_unittests', |
| 297 'printing_unittests', | 298 'printing_unittests', |
| 298 'remoting_unittests', | 299 'remoting_unittests', |
| 299 'sync_integration_tests', | 300 'sync_integration_tests', |
| 300 'sync_unit_tests', | 301 'sync_unit_tests', |
| 301 'ui_unittests', | 302 'ui_unittests', |
| (...skipping 2151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2453 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2454 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2454 'on %(builder)s', | 2455 'on %(builder)s', |
| 2455 extraRecipients=['goma+alert@google.com'], | 2456 extraRecipients=['goma+alert@google.com'], |
| 2456 sendToInterestedUsers=False)) | 2457 sendToInterestedUsers=False)) |
| 2457 | 2458 |
| 2458 | 2459 |
| 2459 ####### PROJECT IDENTITY | 2460 ####### PROJECT IDENTITY |
| 2460 | 2461 |
| 2461 # Buildbot master url: | 2462 # Buildbot master url: |
| 2462 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2463 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |