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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py

Issue 2142283002: Rename *-input.js -> *-automation.js in wpt_automation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update tests Created 4 years, 5 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/w3c/deps_updater.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
index 03a437f53f0539bcf57b55949f534b0775d8225c..152b5f74f9dc7b161a76efe9b60e841c55a1b9e6 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
@@ -202,9 +202,6 @@ class DepsUpdater(object):
return False
dir_from_wpt = fs.relpath(dirname, self.path_from_webkit_base('LayoutTests', 'imported', 'wpt'))
automation_dir = self.path_from_webkit_base('LayoutTests', 'imported', 'wpt_automation', dir_from_wpt)
- # TODO(qyearsley): Update this when all *-input.js are renamed to *-automation.js.
- if fs.isfile(fs.join(automation_dir, '%s-input.js' % basename_without_extension)):
- return False
if fs.isfile(fs.join(automation_dir, '%s-automation.js' % basename_without_extension)):
return False
return True

Powered by Google App Engine
This is Rietveld 408576698