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

Side by Side Diff: masters/master.chromium.webkit/master_mac_latest_cfg.py

Issue 23875043: Remove perf bots from chromium.webkit waterfall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: add telemetry_unittests to mac and win test bots Created 7 years, 3 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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 18 matching lines...) Expand all
29 # 29 #
30 B('Mac10.6 Tests', 'f_mac_tests_rel', scheduler='global_scheduler') 30 B('Mac10.6 Tests', 'f_mac_tests_rel', scheduler='global_scheduler')
31 F('f_mac_tests_rel', mac_out().ChromiumFactory( 31 F('f_mac_tests_rel', mac_out().ChromiumFactory(
32 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 32 options=['--build-tool=ninja', '--compiler=goma-clang', '--',
33 'chromium_builder_tests'], 33 'chromium_builder_tests'],
34 tests=[ 34 tests=[
35 'browser_tests', 35 'browser_tests',
36 'cc_unittests', 36 'cc_unittests',
37 'content_browsertests', 37 'content_browsertests',
38 'interactive_ui_tests', 38 'interactive_ui_tests',
39 'telemetry_unittests',
39 'unit', 40 'unit',
40 'webkit_compositor_bindings_unittests', 41 'webkit_compositor_bindings_unittests',
41 ], 42 ],
42 factory_properties={ 43 factory_properties={
43 'generate_gtest_json': True, 44 'generate_gtest_json': True,
44 'gclient_env': { 45 'gclient_env': {
45 'GYP_GENERATORS':'ninja', 46 'GYP_GENERATORS':'ninja',
46 'GYP_DEFINES':'fastbuild=1', 47 'GYP_DEFINES':'fastbuild=1',
47 }, 48 },
48 'blink_config': 'blink', 49 'blink_config': 'blink',
49 })) 50 }))
50 51
51 B('Mac10.6 Perf', 'f_mac_perf6_rel', scheduler='global_scheduler')
52 F('f_mac_perf6_rel', mac_out().ChromiumFactory(
53 options=['--build-tool=ninja', '--compiler=goma-clang', '--',
54 'chromium_builder_perf'],
55 tests=[
56 'blink_perf',
57 'dom_perf',
58 'dromaeo',
59 'memory',
60 'page_cycler_bloat',
61 'page_cycler_dhtml',
62 'page_cycler_indexeddb',
63 'page_cycler_intl_ar_fa_he',
64 'page_cycler_intl_es_fr_pt-BR',
65 'page_cycler_intl_hi_ru',
66 'page_cycler_intl_ja_zh',
67 'page_cycler_intl_ko_th_vi',
68 'page_cycler_morejs',
69 'page_cycler_moz',
70 'page_cycler_typical_25',
71 'startup',
72 'sunspider',
73 'tab_switching',
74 'octane',
75 ],
76 factory_properties={
77 'show_perf_results': True,
78 'perf_id': 'chromium-rel-mac6-webkit',
79 'gclient_env': {
80 'GYP_GENERATORS':'ninja',
81 'GYP_DEFINES': 'fastbuild=1',
82 },
83 'blink_config': 'blink',
84 }))
85 52
86 B('Mac10.8 Tests', 'f_mac_tests_rel_108', scheduler='global_scheduler') 53 B('Mac10.8 Tests', 'f_mac_tests_rel_108', scheduler='global_scheduler')
87 F('f_mac_tests_rel_108', mac_out().ChromiumFactory( 54 F('f_mac_tests_rel_108', mac_out().ChromiumFactory(
88 # Build 'all' instead of 'chromium_builder_tests' so that archiving works. 55 # Build 'all' instead of 'chromium_builder_tests' so that archiving works.
89 # TODO: Define a new build target that is archive-friendly? 56 # TODO: Define a new build target that is archive-friendly?
90 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 'all'], 57 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 'all'],
91 tests=[ 58 tests=[
92 'browser_tests', 59 'browser_tests',
93 'content_browsertests', 60 'content_browsertests',
94 'interactive_ui_tests', 61 'interactive_ui_tests',
62 'telemetry_unittests',
95 'unit', 63 'unit',
96 ], 64 ],
97 factory_properties={ 65 factory_properties={
98 'archive_build': True, 66 'archive_build': True,
99 'blink_config': 'blink', 67 'blink_config': 'blink',
100 'build_name': 'Mac', 68 'build_name': 'Mac',
101 'generate_gtest_json': True, 69 'generate_gtest_json': True,
102 'gclient_env': { 70 'gclient_env': {
103 'GYP_GENERATORS':'ninja', 71 'GYP_GENERATORS':'ninja',
104 'GYP_DEFINES':'fastbuild=1', 72 'GYP_DEFINES':'fastbuild=1',
(...skipping 12 matching lines...) Expand all
117 B('Mac Builder (dbg)', 'f_mac_dbg', scheduler='global_scheduler') 85 B('Mac Builder (dbg)', 'f_mac_dbg', scheduler='global_scheduler')
118 F('f_mac_dbg', mac().ChromiumFactory( 86 F('f_mac_dbg', mac().ChromiumFactory(
119 target='Debug', 87 target='Debug',
120 options=['--compiler=goma-clang', '--', '-target', 'all_webkit'], 88 options=['--compiler=goma-clang', '--', '-target', 'all_webkit'],
121 factory_properties={ 89 factory_properties={
122 'blink_config': 'blink', 90 'blink_config': 'blink',
123 })) 91 }))
124 92
125 def Update(_config, _active_master, c): 93 def Update(_config, _active_master, c):
126 return helper.Update(c) 94 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webkit/master_linux_latest_cfg.py ('k') | masters/master.chromium.webkit/master_win_latest_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698