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

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

Issue 2648633002: DevTools: enable backwards-compatibility testing (Closed)
Patch Set: Created 3 years, 11 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/linux.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
index d78ae0b31b189e151a152ec85b2ac487cfb9a2e2..d1a5c1d63471d671da11835f194b4f73c6ffdb51 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
@@ -39,10 +39,11 @@ _log = logging.getLogger(__name__)
class LinuxPort(base.Port):
port_name = 'linux'
- SUPPORTED_VERSIONS = ('trusty',)
+ SUPPORTED_VERSIONS = ('trusty', 'devtools-1.2')
FALLBACK_PATHS = {}
FALLBACK_PATHS['trusty'] = ['linux'] + win.WinPort.latest_platform_fallback_path()
+ FALLBACK_PATHS['devtools-1.2'] = ['linux-devtools-1.2']
DEFAULT_BUILD_DIRECTORIES = ('out',)

Powered by Google App Engine
This is Rietveld 408576698