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 import os | 10 import os |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
822 # Ozone builder | 822 # Ozone builder |
823 ozone_builders = [{ | 823 ozone_builders = [{ |
824 'name': 'linux_ecs_ozone', | 824 'name': 'linux_ecs_ozone', |
825 'builddir': 'ozone-linux', | 825 'builddir': 'ozone-linux', |
826 'factory': m_annotator.BaseFactory('ozone_ecs', | 826 'factory': m_annotator.BaseFactory('ozone_ecs', |
827 {'use_mirror': ActiveMaster.is_production_host or None}), | 827 {'use_mirror': ActiveMaster.is_production_host or None}), |
828 }] | 828 }] |
829 | 829 |
830 b_linux_asan = { | 830 b_linux_asan = { |
831 'name': 'linux_asan', | 831 'name': 'linux_asan', |
832 'factory': m_chromium_linux.ChromiumASANFactory( | 832 'factory': m_annotator.BaseFactory('chromium_trybot'), |
Paweł Hajdan Jr.
2014/08/26 16:27:20
Please add a new bot instead of replacing the exis
| |
833 slave_type='Trybot', | |
834 options=[ | |
835 '--build-tool=ninja', | |
836 '--compiler=goma-clang', | |
837 'accessibility_unittests', | |
838 'base_unittests', | |
839 'cacheinvalidation_unittests', | |
840 'cc_unittests', | |
841 'components_unittests', | |
842 'content_unittests', | |
843 'crypto_unittests', | |
844 'device_unittests', | |
845 'display_unittests', | |
846 'gcm_unit_tests', | |
847 'gfx_unittests', | |
848 'google_apis_unittests', | |
849 'gpu_unittests', | |
850 'ipc_tests', | |
851 'jingle_unittests', | |
852 'media_unittests', | |
853 'net_unittests', | |
854 'ppapi_unittests', | |
855 'printing_unittests', | |
856 'remoting_unittests', | |
857 'sandbox_linux_unittests', | |
858 'sql_unittests', | |
859 'sync_unit_tests', | |
860 'ui_unittests', | |
861 'unit_tests', | |
862 'url_unittests', | |
863 ], | |
864 tests=[ | |
865 'accessibility_unittests', | |
866 'base_unittests', | |
867 'cacheinvalidation_unittests', | |
868 'cc_unittests', | |
869 'components_unittests', | |
870 'content_unittests', | |
871 'crypto_unittests', | |
872 'device_unittests', | |
873 'display_unittests', | |
874 'gcm_unit_tests', | |
875 'gfx_unittests', | |
876 'google_apis_unittests', | |
877 'gpu', | |
878 'ipc_tests', | |
879 'jingle', | |
880 'media', | |
881 'net', | |
882 'ppapi_unittests', | |
883 'printing', | |
884 'remoting', | |
885 'sandbox_linux_unittests', | |
886 'sql_unittests', | |
887 'sync_unit_tests', | |
888 'ui_unittests', | |
889 'unit_tests', | |
890 'url_unittests', | |
891 ], | |
892 factory_properties={ | |
893 'asan': True, # Used by runtest.py. | |
894 'cluster_size': 1, | |
895 'gclient_env': { | |
896 'GYP_GENERATORS': 'ninja', | |
897 'GYP_DEFINES': 'asan=1 lsan=1 use_allocator=none fastbuild=0', | |
898 }, | |
899 'lsan': True, | |
900 'sharded_tests': master_config_tryserver.sharded_tests, | |
901 }), | |
902 } | 833 } |
903 | 834 |
904 b_linux_browser_asan = { | 835 b_linux_browser_asan = { |
905 'name': 'linux_browser_asan', | 836 'name': 'linux_browser_asan', |
906 'factory': m_chromium_linux.ChromiumASANFactory( | 837 'factory': m_chromium_linux.ChromiumASANFactory( |
907 slave_type='Trybot', | 838 slave_type='Trybot', |
908 options=[ | 839 options=[ |
909 '--build-tool=ninja', | 840 '--build-tool=ninja', |
910 '--compiler=goma-clang', | 841 '--compiler=goma-clang', |
911 'browser_tests', | 842 'browser_tests', |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1346 # base.make_stop_form = hack_stop(base.make_stop_form) | 1277 # base.make_stop_form = hack_stop(base.make_stop_form) |
1347 | 1278 |
1348 | 1279 |
1349 ####### PROJECT IDENTITY | 1280 ####### PROJECT IDENTITY |
1350 | 1281 |
1351 # The 'projectURL' string will be used to provide a link | 1282 # The 'projectURL' string will be used to provide a link |
1352 # from buildbot HTML pages to your project's home page. | 1283 # from buildbot HTML pages to your project's home page. |
1353 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1284 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1354 | 1285 |
1355 # vi: set ts=4 sts=2 sw=2 et: | 1286 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |