Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: masters/master.tryserver.chromium/master.cfg

Issue 10641005: Use ui_unittests instead of gfx_unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 # These modules come from scripts, which must be in the PYTHONPATH. 10 # These modules come from scripts, which must be in the PYTHONPATH.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 # insane. Should be fixed separately. 261 # insane. Should be fixed separately.
262 linux_tests_full_name = [ 262 linux_tests_full_name = [
263 'base_unittests', 263 'base_unittests',
264 'browser_tests', 264 'browser_tests',
265 'cacheinvalidation_unittests', 265 'cacheinvalidation_unittests',
266 'check_deps', 266 'check_deps',
267 'check_licenses', 267 'check_licenses',
268 'content_unittests', 268 'content_unittests',
269 'crypto_unittests', 269 'crypto_unittests',
270 'dbus_unittests', 270 'dbus_unittests',
271 'gfx_unittests',
272 'googleurl_unittests', 271 'googleurl_unittests',
273 'gpu_unittests', 272 'gpu_unittests',
274 'interactive_ui_tests', 273 'interactive_ui_tests',
275 'ipc_tests', 274 'ipc_tests',
276 'jingle_unittests', 275 'jingle_unittests',
277 'media_unittests', 276 'media_unittests',
278 'nacl_integration', 277 'nacl_integration',
279 'net_unittests', 278 'net_unittests',
280 'printing_unittests', 279 'printing_unittests',
281 'pyauto_functional_tests', 280 'pyauto_functional_tests',
282 'remoting_unittests', 281 'remoting_unittests',
283 'safe_browsing_tests', 282 'safe_browsing_tests',
284 'sql_unittests', 283 'sql_unittests',
285 'sync_integration_tests', 284 'sync_integration_tests',
286 'sync_unit_tests', 285 'sync_unit_tests',
287 'test_shell_tests', 286 'test_shell_tests',
287 'ui_unittests',
288 'unit_tests', 288 'unit_tests',
289 'webkit_lint', 289 'webkit_lint',
290 'webkit_unit_tests', 290 'webkit_unit_tests',
291 ] 291 ]
292 292
293 b_linux = CreateBuilder(platform='linux', 293 b_linux = CreateBuilder(platform='linux',
294 target='Debug', 294 target='Debug',
295 options=['--compiler=goma'], 295 options=['--compiler=goma'],
296 tests=linux_tests, 296 tests=linux_tests,
297 builder_name='linux', 297 builder_name='linux',
(...skipping 14 matching lines...) Expand all
312 #'browser_tests', 312 #'browser_tests',
313 'cacheinvalidation', 313 'cacheinvalidation',
314 #'compositor', 314 #'compositor',
315 'crypto', 315 'crypto',
316 'googleurl', 316 'googleurl',
317 #'interactive_ui', 317 #'interactive_ui',
318 'jingle', 318 'jingle',
319 'media', 319 'media',
320 'printing', 320 'printing',
321 'remoting', 321 'remoting',
322 'ui_unittests',
322 'views', 323 'views',
323 #'unit', 324 #'unit',
324 'unit_ipc', 325 'unit_ipc',
325 'unit_sync', 326 'unit_sync',
326 'unit_unit', 327 'unit_unit',
327 'unit_sql', 328 'unit_sql',
328 'unit_gfx',
329 'unit_content', 329 'unit_content',
330 ] 330 ]
331 331
332 linux_aura_options = [ 332 linux_aura_options = [
333 'aura_builder', 333 'aura_builder',
334 'base_unittests', 334 'base_unittests',
335 'browser_tests',
335 'cacheinvalidation_unittests', 336 'cacheinvalidation_unittests',
337 'content_unittests',
336 'crypto_unittests', 338 'crypto_unittests',
337 'googleurl_unittests', 339 'googleurl_unittests',
340 'interactive_ui_tests',
341 'ipc_tests',
338 'jingle_unittests', 342 'jingle_unittests',
339 'media_unittests', 343 'media_unittests',
340 'printing_unittests', 344 'printing_unittests',
341 'remoting_unittests', 345 'remoting_unittests',
342 'ipc_tests', 346 'sql_unittests',
343 'sync_unit_tests', 347 'sync_unit_tests',
344 'sql_unittests', 348 'ui_unittests',
345 'gfx_unittests',
346 'content_unittests',
347 'browser_tests',
348 'interactive_ui_tests',
349 ] 349 ]
350 350
351 b_linux_aura = CreateBuilder(platform='linux', 351 b_linux_aura = CreateBuilder(platform='linux',
352 target='Release', 352 target='Release',
353 options=['--compiler=goma'] + linux_aura_options, 353 options=['--compiler=goma'] + linux_aura_options,
354 tests=linux_aura_tests, 354 tests=linux_aura_tests,
355 builder_name='linux_aura', 355 builder_name='linux_aura',
356 sharded_tests=linux_sharded, 356 sharded_tests=linux_sharded,
357 slavebuilddir='linux_aura', 357 slavebuilddir='linux_aura',
358 extra_gyp_defines='use_aura=1') 358 extra_gyp_defines='use_aura=1')
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 'aura', 551 'aura',
552 'aura_shell', 552 'aura_shell',
553 'base', 553 'base',
554 'browser_tests', 554 'browser_tests',
555 'cacheinvalidation', 555 'cacheinvalidation',
556 'check_deps', 556 'check_deps',
557 'check_deps2git', 557 'check_deps2git',
558 'compositor', 558 'compositor',
559 'crypto', 559 'crypto',
560 'dbus', 560 'dbus',
561 'gfx',
562 #'googleurl', # issue 49580 561 #'googleurl', # issue 49580
563 'gpu', 562 'gpu',
564 'interactive_ui', 563 'interactive_ui',
565 'unit_ipc', 564 'unit_ipc',
566 'jingle', 565 'jingle',
567 'media', 566 'media',
568 'net', 567 'net',
569 'printing', 568 'printing',
569 'ui_unittests',
570 'unit_sql', 570 'unit_sql',
571 'unit', 571 'unit',
572 'views', 572 'views',
573 ], 573 ],
574 options=[ 574 options=[
575 '--compiler=goma', 575 '--compiler=goma',
576 'aura_builder', 576 'aura_builder',
577 'base_unittests', 577 'base_unittests',
578 'browser_tests', 578 'browser_tests',
579 'cacheinvalidation_unittests', 579 'cacheinvalidation_unittests',
580 'compositor_unittests', 580 'compositor_unittests',
581 'content_unittests', 581 'content_unittests',
582 'crypto_unittests', 582 'crypto_unittests',
583 'dbus_unittests', 583 'dbus_unittests',
584 'gfx_unittests',
585 'gpu_unittests', 584 'gpu_unittests',
586 'googleurl_unittests', 585 'googleurl_unittests',
587 'interactive_ui_tests', 586 'interactive_ui_tests',
588 'ipc_tests', 587 'ipc_tests',
589 'jingle_unittests', 588 'jingle_unittests',
590 'media_unittests', 589 'media_unittests',
591 'net_unittests', 590 'net_unittests',
592 'printing_unittests', 591 'printing_unittests',
593 'remoting_unittests', 592 'remoting_unittests',
594 #'safe_browsing_tests', 593 #'safe_browsing_tests',
595 'sql_unittests', 594 'sql_unittests',
596 'sync_unit_tests', 595 'sync_unit_tests',
596 'ui_unittests',
597 'unit_tests', 597 'unit_tests',
598 ], 598 ],
599 factory_properties={ 599 factory_properties={
600 'gclient_env': { 600 'gclient_env': {
601 'GYP_DEFINES': ('chromeos=1 fastbuild=1' 601 'GYP_DEFINES': ('chromeos=1 fastbuild=1'
602 ' ffmpeg_branding=ChromeOS' 602 ' ffmpeg_branding=ChromeOS'
603 ' dcheck_always_on=1' 603 ' dcheck_always_on=1'
604 ' component=shared_library' 604 ' component=shared_library'
605 ' proprietary_codecs=1')}}) 605 ' proprietary_codecs=1')}})
606 } 606 }
(...skipping 15 matching lines...) Expand all
622 b_valgrind_linux = { 622 b_valgrind_linux = {
623 'name': 'linux_valgrind', 623 'name': 'linux_valgrind',
624 'factory': m_chromium_linux.ChromiumFactory( 624 'factory': m_chromium_linux.ChromiumFactory(
625 target='Release', 625 target='Release',
626 options=[ 626 options=[
627 '--compiler=goma', 627 '--compiler=goma',
628 'DumpRenderTree', 628 'DumpRenderTree',
629 'base_unittests', 629 'base_unittests',
630 'content_unittests', 630 'content_unittests',
631 'crypto_unittests', 631 'crypto_unittests',
632 'gfx_unittests',
633 'googleurl_unittests', 632 'googleurl_unittests',
634 'ipc_tests', 633 'ipc_tests',
635 'media_unittests', 634 'media_unittests',
636 'net_unittests', 635 'net_unittests',
637 'printing_unittests', 636 'printing_unittests',
638 'remoting_unittests', 637 'remoting_unittests',
639 'safe_browsing_tests', 638 'safe_browsing_tests',
640 'sql_unittests', 639 'sql_unittests',
641 'sync_unit_tests', 640 'sync_unit_tests',
642 'test_shell_tests', 641 'test_shell_tests',
642 'ui_unittests',
643 'unit_tests', 643 'unit_tests',
644 ], 644 ],
645 tests=[ 645 tests=[
646 'valgrind_base', 646 'valgrind_base',
647 'valgrind_content', 647 'valgrind_content',
648 'valgrind_crypto', 648 'valgrind_crypto',
649 'valgrind_googleurl', 649 'valgrind_googleurl',
650 'valgrind_ipc', 650 'valgrind_ipc',
651 'valgrind_media', 651 'valgrind_media',
652 'valgrind_net', 652 'valgrind_net',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 693
694 b_chromium_chromiumos_valgrind = { 694 b_chromium_chromiumos_valgrind = {
695 'name': 'linux_chromeos_valgrind', 695 'name': 'linux_chromeos_valgrind',
696 'factory': m_chromium_chromiumos.ChromiumOSFactory( 696 'factory': m_chromium_chromiumos.ChromiumOSFactory(
697 target='Release', 697 target='Release',
698 options=[ 698 options=[
699 '--compiler=goma', 699 '--compiler=goma',
700 'base_unittests', 700 'base_unittests',
701 'content_unittests', 701 'content_unittests',
702 'crypto_unittests', 702 'crypto_unittests',
703 'gfx_unittests',
704 'googleurl_unittests', 703 'googleurl_unittests',
705 'ipc_tests', 704 'ipc_tests',
706 'media_unittests', 705 'media_unittests',
707 'net_unittests', 706 'net_unittests',
708 'printing_unittests', 707 'printing_unittests',
709 'remoting_unittests', 708 'remoting_unittests',
710 'safe_browsing_tests', 709 'safe_browsing_tests',
711 'sql_unittests', 710 'sql_unittests',
712 'sync_unit_tests', 711 'sync_unit_tests',
712 'ui_unittests',
713 'unit_tests', 713 'unit_tests',
714 ], 714 ],
715 tests=[ 715 tests=[
716 'valgrind_base', 716 'valgrind_base',
717 'valgrind_content', 717 'valgrind_content',
718 'valgrind_crypto', 718 'valgrind_crypto',
719 'valgrind_googleurl', 719 'valgrind_googleurl',
720 'valgrind_ipc', 720 'valgrind_ipc',
721 'valgrind_media', 721 'valgrind_media',
722 'valgrind_net', 722 'valgrind_net',
(...skipping 17 matching lines...) Expand all
740 'name': 'linux_tsan', 740 'name': 'linux_tsan',
741 # Reuse the directory. 741 # Reuse the directory.
742 'slavebuilddir': 'linux_valgrind', 742 'slavebuilddir': 'linux_valgrind',
743 'factory': m_chromium_linux.ChromiumFactory( 743 'factory': m_chromium_linux.ChromiumFactory(
744 target='Release', 744 target='Release',
745 options=[ 745 options=[
746 '--compiler=goma', 746 '--compiler=goma',
747 'base_unittests', 747 'base_unittests',
748 'content_unittests', 748 'content_unittests',
749 'crypto_unittests', 749 'crypto_unittests',
750 'gfx_unittests',
751 'googleurl_unittests', 750 'googleurl_unittests',
752 'ipc_tests', 751 'ipc_tests',
753 'media_unittests', 752 'media_unittests',
754 'net_unittests', 753 'net_unittests',
755 'printing_unittests', 754 'printing_unittests',
756 'remoting_unittests', 755 'remoting_unittests',
757 'sql_unittests', 756 'sql_unittests',
758 'sync_unit_tests', 757 'sync_unit_tests',
758 'ui_unittests',
759 'unit_tests', 759 'unit_tests',
760 ], 760 ],
761 tests=[ 761 tests=[
762 'tsan_base', 762 'tsan_base',
763 'tsan_content', 763 'tsan_content',
764 'tsan_crypto', 764 'tsan_crypto',
765 'tsan_googleurl', 765 'tsan_googleurl',
766 'tsan_ipc', 766 'tsan_ipc',
767 'tsan_media', 767 'tsan_media',
768 'tsan_net', 768 'tsan_net',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 extra_gyp_defines='clang=1 clang_use_chrome_plugins=1', 946 extra_gyp_defines='clang=1 clang_use_chrome_plugins=1',
947 builder_name='linux_clang_no_goma', 947 builder_name='linux_clang_no_goma',
948 slavebuilddir='linux_clang') 948 slavebuilddir='linux_clang')
949 949
950 b_mac_no_goma = CreateBuilder( 950 b_mac_no_goma = CreateBuilder(
951 platform='mac', 951 platform='mac',
952 target='Debug', 952 target='Debug',
953 tests=[ 953 tests=[
954 'base', 954 'base',
955 'crypto', 955 'crypto',
956 'gfx', 956 'ui_unittests',
957 'unit', 957 'unit',
958 ], 958 ],
959 builder_name='mac_no_goma', 959 builder_name='mac_no_goma',
960 slavebuilddir='mac') 960 slavebuilddir='mac')
961 961
962 b_linux_chromeos_clang = { 962 b_linux_chromeos_clang = {
963 'name': 'linux_chromeos_clang', 963 'name': 'linux_chromeos_clang',
964 'factory': m_chromium_chromiumos.ChromiumOSFactory( 964 'factory': m_chromium_chromiumos.ChromiumOSFactory(
965 target='Debug', 965 target='Debug',
966 options=['--build-tool=make', '--compiler=clang', 'aura_builder' ], 966 options=['--build-tool=make', '--compiler=clang', 'aura_builder' ],
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 'name': 'linux_asan', 1015 'name': 'linux_asan',
1016 'factory': m_chromium_linux.ChromiumASANFactory( 1016 'factory': m_chromium_linux.ChromiumASANFactory(
1017 slave_type='BuilderTester', 1017 slave_type='BuilderTester',
1018 options=[ 1018 options=[
1019 '--compiler=goma-clang', 1019 '--compiler=goma-clang',
1020 'base_unittests', 1020 'base_unittests',
1021 'browser_tests', 1021 'browser_tests',
1022 'cacheinvalidation_unittests', 1022 'cacheinvalidation_unittests',
1023 'content_unittests', 1023 'content_unittests',
1024 'crypto_unittests', 1024 'crypto_unittests',
1025 'gfx_unittests',
1026 'googleurl_unittests', 1025 'googleurl_unittests',
1027 'gpu_unittests', 1026 'gpu_unittests',
1028 'ipc_tests', 1027 'ipc_tests',
1029 'jingle_unittests', 1028 'jingle_unittests',
1030 'media_unittests', 1029 'media_unittests',
1031 'net_unittests', 1030 'net_unittests',
1032 'printing_unittests', 1031 'printing_unittests',
1033 'remoting_unittests', 1032 'remoting_unittests',
1034 'safe_browsing_tests', 1033 'safe_browsing_tests',
1035 'sql_unittests', 1034 'sql_unittests',
1036 'sync_unit_tests', 1035 'sync_unit_tests',
1036 'ui_unittests',
1037 'unit_tests', 1037 'unit_tests',
1038 ], 1038 ],
1039 tests=[ 1039 tests=[
1040 'base', 1040 'base',
1041 'browser_tests', 1041 'browser_tests',
1042 'cacheinvalidation', 1042 'cacheinvalidation',
1043 'crypto', 1043 'crypto',
1044 #'googleurl', # issue 49580 1044 #'googleurl', # issue 49580
1045 'gpu', 1045 'gpu',
1046 'jingle', 1046 'jingle',
(...skipping 16 matching lines...) Expand all
1063 options=[ 1063 options=[
1064 '--compiler=goma-clang', 1064 '--compiler=goma-clang',
1065 'aura_builder', 1065 'aura_builder',
1066 'aura_shell_unittests', 1066 'aura_shell_unittests',
1067 'base_unittests', 1067 'base_unittests',
1068 'browser_tests', 1068 'browser_tests',
1069 'cacheinvalidation_unittests', 1069 'cacheinvalidation_unittests',
1070 'compositor_unittests', 1070 'compositor_unittests',
1071 'content_unittests', 1071 'content_unittests',
1072 'crypto_unittests', 1072 'crypto_unittests',
1073 'gfx_unittests',
1074 'googleurl_unittests', 1073 'googleurl_unittests',
1075 'gpu_unittests', 1074 'gpu_unittests',
1076 'ipc_tests', 1075 'ipc_tests',
1077 'jingle_unittests', 1076 'jingle_unittests',
1078 'media_unittests', 1077 'media_unittests',
1079 'net_unittests', 1078 'net_unittests',
1080 'printing_unittests', 1079 'printing_unittests',
1081 'remoting_unittests', 1080 'remoting_unittests',
1082 'safe_browsing_tests', 1081 'safe_browsing_tests',
1083 'sql_unittests', 1082 'sql_unittests',
1084 'sync_unit_tests', 1083 'sync_unit_tests',
1084 'ui_unittests',
1085 'unit_tests', 1085 'unit_tests',
1086 ], 1086 ],
1087 tests=[ 1087 tests=[
1088 'aura', 1088 'aura',
1089 'aura_shell', 1089 'aura_shell',
1090 'base', 1090 'base',
1091 'browser_tests', 1091 'browser_tests',
1092 'cacheinvalidation', 1092 'cacheinvalidation',
1093 'compositor', 1093 'compositor',
1094 'content', 1094 'content',
1095 'crypto', 1095 'crypto',
1096 'gfx',
1097 #'googleurl', # issue 49580 1096 #'googleurl', # issue 49580
1098 'gpu', 1097 'gpu',
1099 'jingle', 1098 'jingle',
1100 'media', 1099 'media',
1101 'net', 1100 'net',
1102 'printing', 1101 'printing',
1103 'remoting', 1102 'remoting',
1104 'safe_browsing', 1103 'safe_browsing',
1104 'ui_unittests',
1105 'unit_sql', 1105 'unit_sql',
1106 'unit', 1106 'unit',
1107 ], 1107 ],
1108 factory_properties={ 1108 factory_properties={
1109 'asan': True, # Used by runtest.py. 1109 'asan': True, # Used by runtest.py.
1110 'gclient_env': { 1110 'gclient_env': {
1111 'GYP_DEFINES': 'asan=1 linux_use_tcmalloc=0 ' 1111 'GYP_DEFINES': 'asan=1 linux_use_tcmalloc=0 '
1112 'chromeos=1 component=static_library '} 1112 'chromeos=1 component=static_library '}
1113 }), 1113 }),
1114 } 1114 }
(...skipping 25 matching lines...) Expand all
1140 'printing_unittests', 1140 'printing_unittests',
1141 'media_unittests', 1141 'media_unittests',
1142 'courgette_unittests', 1142 'courgette_unittests',
1143 'remoting_unittests', 1143 'remoting_unittests',
1144 'sql_unittests', 1144 'sql_unittests',
1145 'sync_unit_tests', 1145 'sync_unit_tests',
1146 'ipc_tests', 1146 'ipc_tests',
1147 'base_unittests', 1147 'base_unittests',
1148 'crypto_unittests', 1148 'crypto_unittests',
1149 'net_unittests', 1149 'net_unittests',
1150 'gfx_unittests', 1150 'ui_unittests',
1151 'unit_tests', 1151 'unit_tests',
1152 'test_shell_tests', 1152 'test_shell_tests',
1153 'DumpRenderTree', 1153 'DumpRenderTree',
1154 ], 1154 ],
1155 tests=['heapcheck_googleurl', 1155 tests=['heapcheck_googleurl',
1156 'heapcheck_printing', 1156 'heapcheck_printing',
1157 'heapcheck_media', 1157 'heapcheck_media',
1158 'heapcheck_content', 1158 'heapcheck_content',
1159 'heapcheck_courgette', 1159 'heapcheck_courgette',
1160 'heapcheck_remoting', 1160 'heapcheck_remoting',
1161 'heapcheck_sql', 1161 'heapcheck_sql',
1162 'heapcheck_sync', 1162 'heapcheck_sync',
1163 'heapcheck_ipc', 1163 'heapcheck_ipc',
1164 'heapcheck_base', 1164 'heapcheck_base',
1165 'heapcheck_crypto', 1165 'heapcheck_crypto',
1166 'heapcheck_net', 1166 'heapcheck_net',
1167 'heapcheck_gfx', 1167 'heapcheck_ui_unittests',
1168 'heapcheck_unit', 1168 'heapcheck_unit',
1169 'heapcheck_test_shell', 1169 'heapcheck_test_shell',
1170 ], 1170 ],
1171 factory_properties={ 1171 factory_properties={
1172 'gclient_env': {'GYP_DEFINES': ('linux_use_tcmalloc=1 ' 1172 'gclient_env': {'GYP_DEFINES': ('linux_use_tcmalloc=1 '
1173 'linux_use_heapchecker=1 ' 1173 'linux_use_heapchecker=1 '
1174 'linux_keep_shadow_stacks=1 ' 1174 'linux_keep_shadow_stacks=1 '
1175 'werror= ') 1175 'werror= ')
1176 } 1176 }
1177 } 1177 }
1178 ), 1178 ),
1179 } 1179 }
1180 1180
1181 b_linux_redux = { 1181 b_linux_redux = {
1182 'name': 'linux_redux', 1182 'name': 'linux_redux',
1183 'factory': m_chromium_linux.ChromiumFactory( 1183 'factory': m_chromium_linux.ChromiumFactory(
1184 slave_type='BuilderTester', 1184 slave_type='BuilderTester',
1185 options=[ 1185 options=[
1186 '--compiler=goma', 1186 '--compiler=goma',
1187 'base_unittests', 1187 'base_unittests',
1188 'cacheinvalidation_unittests', 1188 'cacheinvalidation_unittests',
1189 'content_unittests', 1189 'content_unittests',
1190 'crypto_unittests', 1190 'crypto_unittests',
1191 'gfx_unittests',
1192 'googleurl_unittests', 1191 'googleurl_unittests',
1193 'ipc_tests', 1192 'ipc_tests',
1194 'jingle_unittests', 1193 'jingle_unittests',
1195 'media_unittests', 1194 'media_unittests',
1196 'net_unittests', 1195 'net_unittests',
1197 'printing_unittests', 1196 'printing_unittests',
1198 'remoting_unittests', 1197 'remoting_unittests',
1199 'sql_unittests', 1198 'sql_unittests',
1200 'sync_unit_tests', 1199 'sync_unit_tests',
1200 'ui_unittests',
1201 'unit_tests', 1201 'unit_tests',
1202 ], 1202 ],
1203 tests=[ 1203 tests=[
1204 'base', 1204 'base',
1205 'cacheinvalidation', 1205 'cacheinvalidation',
1206 'crypto', 1206 'crypto',
1207 'jingle', 1207 'jingle',
1208 'net', 1208 'net',
1209 'unit', 1209 'unit',
1210 ], 1210 ],
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 ####### PROJECT IDENTITY 1486 ####### PROJECT IDENTITY
1487 1487
1488 # The 'projectURL' string will be used to provide a link 1488 # The 'projectURL' string will be used to provide a link
1489 # from buildbot HTML pages to your project's home page. 1489 # from buildbot HTML pages to your project's home page.
1490 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 1490 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
1491 1491
1492 # Buildbot master url: 1492 # Buildbot master url:
1493 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' 1493 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/'
1494 1494
1495 # vi: set ts=4 sts=2 sw=2 et: 1495 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.chromium/master_linux_cfg.py ('k') | scripts/master/factory/chromium_commands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698