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

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

Issue 1806393002: Run yapf on files in webkit/layout_tests/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py
index 63220c727abb0b6d0789800b0953388dc1165e70..40a7f6e1ea8da92e583abf6cb1862126fa4f53a2 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/builders.py
@@ -38,24 +38,34 @@ import re
# TestExpectationsParser._configuration_tokens_list
_exact_matches = {
- "WebKit Win7": {"port_name": "win-win7", "specifiers": ['Win7', 'Release']},
- "WebKit Win7 (dbg)": {"port_name": "win-win7", "specifiers": ['Win7', 'Debug']},
- "WebKit Win10": {"port_name": "win-win10", "specifiers": ['Win10', 'Release']},
+ "WebKit Win7": {"port_name": "win-win7",
+ "specifiers": ['Win7', 'Release']},
+ "WebKit Win7 (dbg)": {"port_name": "win-win7",
+ "specifiers": ['Win7', 'Debug']},
+ "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']},
- "WebKit Linux (dbg)": {"port_name": "linux-precise", "specifiers": ['Precise', 'Debug']},
- "WebKit Mac10.9": {"port_name": "mac-mac10.9", "specifiers": ['Mac10.9', 'Release']},
- "WebKit Mac10.10": {"port_name": "mac-mac10.10", "specifiers": ['Mac10.10', 'Release']},
- "WebKit Mac10.11": {"port_name": "mac-mac10.11", "specifiers": ['10.11', 'Release']},
- "WebKit Mac10.11 (dbg)": {"port_name": "mac-mac10.11", "specifiers": ['10.11', 'Debug']},
- "WebKit Mac10.11 (retina)": {"port_name": "mac-retina", "specifiers": ['Retina', 'Release']},
- "WebKit Android (Nexus4)": {"port_name": "android", "specifiers": ['Android', 'Release']},
+ "WebKit Linux": {"port_name": "linux-precise",
+ "specifiers": ['Precise', 'Release']},
+ "WebKit Linux Trusty": {"port_name": "linux-trusty",
+ "specifiers": ['Trusty', 'Release']},
+ "WebKit Linux (dbg)": {"port_name": "linux-precise",
+ "specifiers": ['Precise', 'Debug']},
+ "WebKit Mac10.9": {"port_name": "mac-mac10.9",
+ "specifiers": ['Mac10.9', 'Release']},
+ "WebKit Mac10.10": {"port_name": "mac-mac10.10",
+ "specifiers": ['Mac10.10', 'Release']},
+ "WebKit Mac10.11": {"port_name": "mac-mac10.11",
+ "specifiers": ['10.11', 'Release']},
+ "WebKit Mac10.11 (dbg)": {"port_name": "mac-mac10.11",
+ "specifiers": ['10.11', 'Debug']},
+ "WebKit Mac10.11 (retina)": {"port_name": "mac-retina",
+ "specifiers": ['Retina', 'Release']},
+ "WebKit Android (Nexus4)": {"port_name": "android",
+ "specifiers": ['Android', 'Release']},
}
-
-_ports_without_builders = [
-]
+_ports_without_builders = []
def builder_path_from_name(builder_name):

Powered by Google App Engine
This is Rietveld 408576698