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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: masters/master.chromium.webkit/master_mac_latest_cfg.py
diff --git a/masters/master.chromium.webkit/master_mac_latest_cfg.py b/masters/master.chromium.webkit/master_mac_latest_cfg.py
index 3d3d860f8da4802e1267126ddbbd85faea7e0636..464dbd118492f26d283247b751b120980b48d002 100644
--- a/masters/master.chromium.webkit/master_mac_latest_cfg.py
+++ b/masters/master.chromium.webkit/master_mac_latest_cfg.py
@@ -32,7 +32,7 @@ S('s8_webkit_rel', branch='trunk', treeStableTimer=60)
# Mac Rel Builder
#
B('Mac10.6 Tests', 'f_mac_tests_rel', scheduler='s8_webkit_rel')
-F('f_mac_tests_rel', mac_out().ChromiumWebkitLatestFactory(
+F('f_mac_tests_rel', mac_out().ChromiumFactory(
options=['--build-tool=ninja', '--compiler=goma-clang', '--',
'chromium_builder_tests'],
tests=[
@@ -49,10 +49,11 @@ F('f_mac_tests_rel', mac_out().ChromiumWebkitLatestFactory(
'GYP_GENERATORS':'ninja',
'GYP_DEFINES':'fastbuild=1',
},
+ 'blink_config': 'blink',
}))
B('Mac10.6 Perf', 'f_mac_perf6_rel', scheduler='s8_webkit_rel')
-F('f_mac_perf6_rel', mac_out().ChromiumWebkitLatestFactory(
+F('f_mac_perf6_rel', mac_out().ChromiumFactory(
options=['--build-tool=ninja', '--compiler=goma-clang', '--',
'chromium_builder_perf'],
tests=[
@@ -78,10 +79,11 @@ F('f_mac_perf6_rel', mac_out().ChromiumWebkitLatestFactory(
'GYP_GENERATORS':'ninja',
'GYP_DEFINES': 'fastbuild=1',
},
+ 'blink_config': 'blink',
}))
B('Mac10.8 Tests', 'f_mac_tests_rel_108', scheduler='s8_webkit_rel')
-F('f_mac_tests_rel_108', mac_out().ChromiumWebkitLatestFactory(
+F('f_mac_tests_rel_108', mac_out().ChromiumFactory(
options=['--build-tool=ninja', '--compiler=goma-clang', '--',
'chromium_builder_tests'],
tests=[
@@ -96,6 +98,7 @@ F('f_mac_tests_rel_108', mac_out().ChromiumWebkitLatestFactory(
'GYP_GENERATORS':'ninja',
'GYP_DEFINES':'fastbuild=1',
},
+ 'blink_config': 'blink',
}))
@@ -112,9 +115,12 @@ S('s8_webkit_dbg', branch='trunk', treeStableTimer=60)
# Mac Dbg Builder
#
B('Mac Builder (dbg)', 'f_mac_dbg', scheduler='s8_webkit_dbg')
-F('f_mac_dbg', mac().ChromiumWebkitLatestFactory(
+F('f_mac_dbg', mac().ChromiumFactory(
target='Debug',
- options=['--', '-project', '../webkit/webkit.xcodeproj',]))
+ options=['--', '-project', '../webkit/webkit.xcodeproj',],
+ factory_properties={
+ 'blink_config': 'blink',
+ }))
def Update(config, active_master, c):
return helper.Update(c)

Powered by Google App Engine
This is Rietveld 408576698