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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/builders.py

Issue 1294603002: Add run-webkit-tests support and generate baselines for win8 and win10. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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: Tools/Scripts/webkitpy/layout_tests/port/builders.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/builders.py b/Tools/Scripts/webkitpy/layout_tests/port/builders.py
index debd18ca6db222b72402c70ae55e7970ec894f7c..3d824c946336f26e6277c584c37f7e1368da7f75 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/builders.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/builders.py
@@ -44,6 +44,8 @@ _exact_matches = {
"WebKit XP": {"port_name": "win-xp", "specifiers": ['XP', 'Release']},
"WebKit Win7": {"port_name": "win-win7", "specifiers": ['Win7', 'Release']},
"WebKit Win7 (dbg)": {"port_name": "win-win7", "specifiers": ['Win7', 'Debug']},
+ "WebKit Win8": {"port_name": "win-win8", "specifiers": ['Win8', 'Release']},
+ "WebKit Win10": {"port_name": "win-win10", "specifiers": ['Win10', 'Release']},
# FIXME: Rename this to 'WebKit Linux Precise'
"WebKit Linux": {"port_name": "linux-precise", "specifiers": ['Precise', 'Release']},
"WebKit Linux Trusty": {"port_name": "linux-trusty", "specifiers": ['Trusty', 'Release']},
@@ -68,6 +70,8 @@ _deps_builders = {
"linux-trusty": "WebKit Linux (deps)",
"win-xp": "WebKit XP (deps)",
"win-win7": "WebKit XP (deps)",
+ "win-win8": "WebKit XP (deps)",
+ "win-win10": "WebKit XP (deps)",
"mac-snowleopard": "WebKit Mac10.6 (deps)",
# The following port names are mapped to 10.6 bot since we don't have bots
# for these ports.

Powered by Google App Engine
This is Rietveld 408576698