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 import locks | 6 from buildbot import locks |
7 from buildbot.changes import svnpoller | 7 from buildbot.changes import svnpoller |
8 from buildbot.scheduler import Dependent | 8 from buildbot.scheduler import Dependent |
9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
10 from buildbot.scheduler import Periodic | 10 from buildbot.scheduler import Periodic |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 'gclient_env': { | 738 'gclient_env': { |
739 'GYP_DEFINES': 'build_for_tool=memcheck target_arch=ia32'}}) | 739 'GYP_DEFINES': 'build_for_tool=memcheck target_arch=ia32'}}) |
740 | 740 |
741 f_chromium_rel_linux_tsan_v2 = linux().ChromiumFactory( | 741 f_chromium_rel_linux_tsan_v2 = linux().ChromiumFactory( |
742 target='Release', | 742 target='Release', |
743 slave_type='BuilderTester', | 743 slave_type='BuilderTester', |
744 options=[ | 744 options=[ |
745 '--compiler=goma-clang', | 745 '--compiler=goma-clang', |
746 '--build-tool=ninja', | 746 '--build-tool=ninja', |
747 'base_unittests', | 747 'base_unittests', |
| 748 'components_unittests', |
748 'content_unittests', | 749 'content_unittests', |
749 'ipc_tests', | 750 'ipc_tests', |
750 'media_unittests', | 751 'media_unittests', |
751 'net_unittests', | 752 'net_unittests', |
752 'remoting_unittests', | 753 'remoting_unittests', |
753 'unit_tests', | 754 'unit_tests', |
754 ], | 755 ], |
755 factory_properties={ | 756 factory_properties={ |
756 'tsan': True, | 757 'tsan': True, |
757 'gclient_env': { | 758 'gclient_env': { |
758 'GYP_DEFINES': ('tsan=1 ' | 759 'GYP_DEFINES': ('tsan=1 ' |
759 'linux_use_tcmalloc=0 ' | 760 'linux_use_tcmalloc=0 ' |
760 'release_extra_cflags="-gline-tables-only" ' | 761 'release_extra_cflags="-gline-tables-only" ' |
761 'disable_nacl=1 '), | 762 'disable_nacl=1 '), |
762 'GYP_GENERATORS': 'ninja', }}, | 763 'GYP_GENERATORS': 'ninja', }}, |
763 tests=[ | 764 tests=[ |
764 'base', | 765 'base', |
| 766 'components_unittests', |
765 'content_unittests', | 767 'content_unittests', |
766 'media', | 768 'media', |
767 'net', | 769 'net', |
768 'remoting', | 770 'remoting', |
769 'unit', | 771 'unit', |
770 ], | 772 ], |
771 ) | 773 ) |
772 | 774 |
773 # GYP_DEFINES for running coverage. Why we do each: | 775 # GYP_DEFINES for running coverage. Why we do each: |
774 # coverage=1: turn it on! (e.g. add -ftest-coverage on Linux, enable | 776 # coverage=1: turn it on! (e.g. add -ftest-coverage on Linux, enable |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1218 slave_type='Tester', | 1220 slave_type='Tester', |
1219 target='Release', | 1221 target='Release', |
1220 build_url=chromium_linux_arm_archive, | 1222 build_url=chromium_linux_arm_archive, |
1221 tests=[ | 1223 tests=[ |
1222 'base', | 1224 'base', |
1223 'browser_tests', | 1225 'browser_tests', |
1224 'cacheinvalidation', | 1226 'cacheinvalidation', |
1225 'cc_unittests', | 1227 'cc_unittests', |
1226 'content_browsertests', | 1228 'content_browsertests', |
1227 'chromedriver2_unittests', | 1229 'chromedriver2_unittests', |
| 1230 'components_unittests', |
1228 'content_unittests', | 1231 'content_unittests', |
1229 'crypto', | 1232 'crypto', |
1230 'dbus', | 1233 'dbus', |
1231 'device_unittests', | 1234 'device_unittests', |
1232 'googleurl', | 1235 'googleurl', |
1233 'gpu', | 1236 'gpu', |
1234 'interactive_ui', | 1237 'interactive_ui', |
1235 'jingle', | 1238 'jingle', |
1236 'media', | 1239 'media', |
1237 'net', | 1240 'net', |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2016 subject='goma canary buildbot %(result)s in %(projectName)s ' |
2014 'on %(builder)s', | 2017 'on %(builder)s', |
2015 extraRecipients=['goma+alert@google.com'], | 2018 extraRecipients=['goma+alert@google.com'], |
2016 sendToInterestedUsers=False)) | 2019 sendToInterestedUsers=False)) |
2017 | 2020 |
2018 | 2021 |
2019 ####### PROJECT IDENTITY | 2022 ####### PROJECT IDENTITY |
2020 | 2023 |
2021 # Buildbot master url: | 2024 # Buildbot master url: |
2022 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' | 2025 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
OLD | NEW |