| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 ] | 276 ] |
| 277 | 277 |
| 278 # Tests that are single-machine shard-safe. | 278 # Tests that are single-machine shard-safe. |
| 279 sharded_tests = [ | 279 sharded_tests = [ |
| 280 'aura_unittests', | 280 'aura_unittests', |
| 281 'base_unittests', | 281 'base_unittests', |
| 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 'chromedriver_unittests', |
| 286 'chromedriver2_unittests', | 287 'chromedriver2_unittests', |
| 287 'components_unittests', | 288 'components_unittests', |
| 288 'content_browsertests', | 289 'content_browsertests', |
| 289 'content_unittests', | 290 'content_unittests', |
| 290 'crypto_unittests', | 291 'crypto_unittests', |
| 291 'device_unittests', | 292 'device_unittests', |
| 292 'events_unittests', | 293 'events_unittests', |
| 293 'gpu_unittests', | 294 'gpu_unittests', |
| 294 'jingle_unittests', | 295 'jingle_unittests', |
| 295 'media_unittests', | 296 'media_unittests', |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 'gclient_env': { | 1025 'gclient_env': { |
| 1025 # Ninja/Goma needs to have this set at gyp time. | 1026 # Ninja/Goma needs to have this set at gyp time. |
| 1026 'GYP_DEFINES': ('component=shared_library ' | 1027 'GYP_DEFINES': ('component=shared_library ' |
| 1027 'fastbuild=1 chromium_win_pch=0 disable_nacl=1'), | 1028 'fastbuild=1 chromium_win_pch=0 disable_nacl=1'), |
| 1028 }}) | 1029 }}) |
| 1029 | 1030 |
| 1030 win_x64_tests = [ | 1031 win_x64_tests = [ |
| 1031 'base_unittests', | 1032 'base_unittests', |
| 1032 'cacheinvalidation_unittests', | 1033 'cacheinvalidation_unittests', |
| 1033 'cc_unittests', | 1034 'cc_unittests', |
| 1035 'chromedriver_unittests', |
| 1034 'chromedriver2_unittests', | 1036 'chromedriver2_unittests', |
| 1035 'components_unittests', | 1037 'components_unittests', |
| 1036 'content_browsertests', | 1038 'content_browsertests', |
| 1037 'courgette_unittests', | 1039 'courgette_unittests', |
| 1038 'crypto_unittests', | 1040 'crypto_unittests', |
| 1039 'googleurl', | 1041 'googleurl', |
| 1040 'gpu', | 1042 'gpu', |
| 1041 'installer', | 1043 'installer', |
| 1042 'interactive_ui_tests', | 1044 'interactive_ui_tests', |
| 1043 'jingle', | 1045 'jingle', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 | 1412 |
| 1411 f_chromium_mac_108_x64_tester_experimental = mac().ChromiumFactory( | 1413 f_chromium_mac_108_x64_tester_experimental = mac().ChromiumFactory( |
| 1412 build_url=chromium_mac_108_x64_experimental_archive, | 1414 build_url=chromium_mac_108_x64_experimental_archive, |
| 1413 slave_type='Tester', | 1415 slave_type='Tester', |
| 1414 target='Release', | 1416 target='Release', |
| 1415 tests=[ | 1417 tests=[ |
| 1416 'base_unittests', | 1418 'base_unittests', |
| 1417 'browser_tests', | 1419 'browser_tests', |
| 1418 'cacheinvalidation_unittests', | 1420 'cacheinvalidation_unittests', |
| 1419 'cc_unittests', | 1421 'cc_unittests', |
| 1422 'chromedriver_unittests', |
| 1420 'chromedriver2_unittests', | 1423 'chromedriver2_unittests', |
| 1421 'components_unittests', | 1424 'components_unittests', |
| 1422 'content_browsertests', | 1425 'content_browsertests', |
| 1423 'content_unittests', | 1426 'content_unittests', |
| 1424 'crypto_unittests', | 1427 'crypto_unittests', |
| 1425 'google_apis_unittests', | 1428 'google_apis_unittests', |
| 1426 'gpu_unittests', | 1429 'gpu_unittests', |
| 1427 'interactive_ui_tests', | 1430 'interactive_ui_tests', |
| 1428 'ipc_tests', | 1431 'ipc_tests', |
| 1429 'jingle_unittests', | 1432 'jingle_unittests', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 | 1489 |
| 1487 f_linux_arm_tests_panda = linux(nohooks_on_update=True).ChromiumFactory( | 1490 f_linux_arm_tests_panda = linux(nohooks_on_update=True).ChromiumFactory( |
| 1488 slave_type='Tester', | 1491 slave_type='Tester', |
| 1489 target='Release', | 1492 target='Release', |
| 1490 build_url=chromium_linux_arm_archive, | 1493 build_url=chromium_linux_arm_archive, |
| 1491 tests=[ | 1494 tests=[ |
| 1492 'base_unittests', | 1495 'base_unittests', |
| 1493 'browser_tests', | 1496 'browser_tests', |
| 1494 'cacheinvalidation_unittests', | 1497 'cacheinvalidation_unittests', |
| 1495 'cc_unittests', | 1498 'cc_unittests', |
| 1499 'chromedriver_unittests', |
| 1496 'chromedriver2_unittests', | 1500 'chromedriver2_unittests', |
| 1497 'components_unittests', | 1501 'components_unittests', |
| 1498 'content_browsertests', | 1502 'content_browsertests', |
| 1499 'content_unittests', | 1503 'content_unittests', |
| 1500 'crypto_unittests', | 1504 'crypto_unittests', |
| 1501 'dbus', | 1505 'dbus', |
| 1502 'device_unittests', | 1506 'device_unittests', |
| 1503 'googleurl', | 1507 'googleurl', |
| 1504 'gpu', | 1508 'gpu', |
| 1505 'interactive_ui_tests', | 1509 'interactive_ui_tests', |
| (...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2432 | 2436 |
| 2433 c['status'].append(MailNotifier( | 2437 c['status'].append(MailNotifier( |
| 2434 fromaddr='ukai@chromium.org', # Reply-To address | 2438 fromaddr='ukai@chromium.org', # Reply-To address |
| 2435 mode='failing', | 2439 mode='failing', |
| 2436 categories=['goma'], | 2440 categories=['goma'], |
| 2437 relayhost=config.Master.smtp, | 2441 relayhost=config.Master.smtp, |
| 2438 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2442 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2439 'on %(builder)s', | 2443 'on %(builder)s', |
| 2440 extraRecipients=['goma+alert@google.com'], | 2444 extraRecipients=['goma+alert@google.com'], |
| 2441 sendToInterestedUsers=False)) | 2445 sendToInterestedUsers=False)) |
| OLD | NEW |