| 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 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1337 annotator_factory.AnnotatorFactory().BaseFactory( | 1337 annotator_factory.AnnotatorFactory().BaseFactory( |
| 1338 recipe='android_webview_aosp') | 1338 recipe='android_webview_aosp') |
| 1339 | 1339 |
| 1340 | 1340 |
| 1341 f_chromium_dbg_ios_simulator = ios().ChromiumFactory( | 1341 f_chromium_dbg_ios_simulator = ios().ChromiumFactory( |
| 1342 target='Debug', | 1342 target='Debug', |
| 1343 tests=['base_unittests', | 1343 tests=['base_unittests', |
| 1344 'content_unittests', | 1344 'content_unittests', |
| 1345 'crypto_unittests', | 1345 'crypto_unittests', |
| 1346 'googleurl', | 1346 'googleurl', |
| 1347 'media', | |
| 1348 'net', | 1347 'net', |
| 1349 'ui_unittests', | 1348 'ui_unittests', |
| 1350 'unit_sql', | 1349 'unit_sql', |
| 1351 'unit_sync', | 1350 'unit_sync', |
| 1352 'unit_tests',], | 1351 'unit_tests',], |
| 1353 options = [ | 1352 options = [ |
| 1354 '--', '-project', '../build/all.xcodeproj', '-sdk', | 1353 '--', '-project', '../build/all.xcodeproj', '-sdk', |
| 1355 'iphonesimulator6.1', '-target', 'All'], | 1354 'iphonesimulator6.1', '-target', 'All'], |
| 1356 factory_properties={ | 1355 factory_properties={ |
| 1357 'app_name': 'Chromium.app', | 1356 'app_name': 'Chromium.app', |
| (...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2473 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2472 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2474 'on %(builder)s', | 2473 'on %(builder)s', |
| 2475 extraRecipients=['goma+alert@google.com'], | 2474 extraRecipients=['goma+alert@google.com'], |
| 2476 sendToInterestedUsers=False)) | 2475 sendToInterestedUsers=False)) |
| 2477 | 2476 |
| 2478 | 2477 |
| 2479 ####### PROJECT IDENTITY | 2478 ####### PROJECT IDENTITY |
| 2480 | 2479 |
| 2481 # Buildbot master url: | 2480 # Buildbot master url: |
| 2482 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2481 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
| OLD | NEW |