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

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

Issue 14440005: Rework how bots get the version of Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix typo in devtools master.cfg Created 7 years, 8 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 14 matching lines...) Expand all
25 25
26 # 26 #
27 # Main release scheduler for webkit 27 # Main release scheduler for webkit
28 # 28 #
29 S('s8_webkit_rel', branch='trunk', treeStableTimer=60) 29 S('s8_webkit_rel', branch='trunk', treeStableTimer=60)
30 30
31 # 31 #
32 # Mac Rel Builder 32 # Mac Rel Builder
33 # 33 #
34 B('Mac10.6 Tests', 'f_mac_tests_rel', scheduler='s8_webkit_rel') 34 B('Mac10.6 Tests', 'f_mac_tests_rel', scheduler='s8_webkit_rel')
35 F('f_mac_tests_rel', mac_out().ChromiumWebkitLatestFactory( 35 F('f_mac_tests_rel', mac_out().ChromiumFactory(
36 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 36 options=['--build-tool=ninja', '--compiler=goma-clang', '--',
37 'chromium_builder_tests'], 37 'chromium_builder_tests'],
38 tests=[ 38 tests=[
39 'browser_tests', 39 'browser_tests',
40 'cc_unittests', 40 'cc_unittests',
41 'content_browsertests', 41 'content_browsertests',
42 'interactive_ui_tests', 42 'interactive_ui_tests',
43 'unit', 43 'unit',
44 'webkit_compositor_bindings_unittests', 44 'webkit_compositor_bindings_unittests',
45 ], 45 ],
46 factory_properties={ 46 factory_properties={
47 'generate_gtest_json': True, 47 'generate_gtest_json': True,
48 'gclient_env': { 48 'gclient_env': {
49 'GYP_GENERATORS':'ninja', 49 'GYP_GENERATORS':'ninja',
50 'GYP_DEFINES':'fastbuild=1', 50 'GYP_DEFINES':'fastbuild=1',
51 }, 51 },
52 'blink_config': 'blink',
52 })) 53 }))
53 54
54 B('Mac10.6 Perf', 'f_mac_perf6_rel', scheduler='s8_webkit_rel') 55 B('Mac10.6 Perf', 'f_mac_perf6_rel', scheduler='s8_webkit_rel')
55 F('f_mac_perf6_rel', mac_out().ChromiumWebkitLatestFactory( 56 F('f_mac_perf6_rel', mac_out().ChromiumFactory(
56 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 57 options=['--build-tool=ninja', '--compiler=goma-clang', '--',
57 'chromium_builder_perf'], 58 'chromium_builder_perf'],
58 tests=[ 59 tests=[
59 'dom_perf', 60 'dom_perf',
60 'dromaeo', 61 'dromaeo',
61 'memory', 62 'memory',
62 'page_cycler_bloat', 63 'page_cycler_bloat',
63 'page_cycler_dhtml', 64 'page_cycler_dhtml',
64 'page_cycler_indexeddb', 65 'page_cycler_indexeddb',
65 'page_cycler_intl1', 66 'page_cycler_intl1',
66 'page_cycler_intl2', 67 'page_cycler_intl2',
67 'page_cycler_morejs', 68 'page_cycler_morejs',
68 'page_cycler_moz', 69 'page_cycler_moz',
69 'startup', 70 'startup',
70 'sunspider', 71 'sunspider',
71 'tab_switching', 72 'tab_switching',
72 'octane', 73 'octane',
73 ], 74 ],
74 factory_properties={ 75 factory_properties={
75 'show_perf_results': True, 76 'show_perf_results': True,
76 'perf_id': 'chromium-rel-mac6-webkit', 77 'perf_id': 'chromium-rel-mac6-webkit',
77 'gclient_env': { 78 'gclient_env': {
78 'GYP_GENERATORS':'ninja', 79 'GYP_GENERATORS':'ninja',
79 'GYP_DEFINES': 'fastbuild=1', 80 'GYP_DEFINES': 'fastbuild=1',
80 }, 81 },
82 'blink_config': 'blink',
81 })) 83 }))
82 84
83 B('Mac10.8 Tests', 'f_mac_tests_rel_108', scheduler='s8_webkit_rel') 85 B('Mac10.8 Tests', 'f_mac_tests_rel_108', scheduler='s8_webkit_rel')
84 F('f_mac_tests_rel_108', mac_out().ChromiumWebkitLatestFactory( 86 F('f_mac_tests_rel_108', mac_out().ChromiumFactory(
85 options=['--build-tool=ninja', '--compiler=goma-clang', '--', 87 options=['--build-tool=ninja', '--compiler=goma-clang', '--',
86 'chromium_builder_tests'], 88 'chromium_builder_tests'],
87 tests=[ 89 tests=[
88 'browser_tests', 90 'browser_tests',
89 'content_browsertests', 91 'content_browsertests',
90 'interactive_ui_tests', 92 'interactive_ui_tests',
91 'unit', 93 'unit',
92 ], 94 ],
93 factory_properties={ 95 factory_properties={
94 'generate_gtest_json': True, 96 'generate_gtest_json': True,
95 'gclient_env': { 97 'gclient_env': {
96 'GYP_GENERATORS':'ninja', 98 'GYP_GENERATORS':'ninja',
97 'GYP_DEFINES':'fastbuild=1', 99 'GYP_DEFINES':'fastbuild=1',
98 }, 100 },
101 'blink_config': 'blink',
99 })) 102 }))
100 103
101 104
102 ################################################################################ 105 ################################################################################
103 ## Debug 106 ## Debug
104 ################################################################################ 107 ################################################################################
105 108
106 # 109 #
107 # Main debug scheduler for webkit 110 # Main debug scheduler for webkit
108 # 111 #
109 S('s8_webkit_dbg', branch='trunk', treeStableTimer=60) 112 S('s8_webkit_dbg', branch='trunk', treeStableTimer=60)
110 113
111 # 114 #
112 # Mac Dbg Builder 115 # Mac Dbg Builder
113 # 116 #
114 B('Mac Builder (dbg)', 'f_mac_dbg', scheduler='s8_webkit_dbg') 117 B('Mac Builder (dbg)', 'f_mac_dbg', scheduler='s8_webkit_dbg')
115 F('f_mac_dbg', mac().ChromiumWebkitLatestFactory( 118 F('f_mac_dbg', mac().ChromiumFactory(
116 target='Debug', 119 target='Debug',
117 options=['--', '-project', '../webkit/webkit.xcodeproj',])) 120 options=['--', '-project', '../webkit/webkit.xcodeproj',],
121 factory_properties={
122 'blink_config': 'blink',
123 }))
118 124
119 def Update(config, active_master, c): 125 def Update(config, active_master, c):
120 return helper.Update(c) 126 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698