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

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

Issue 2016953002: update-w3c-deps: Do not rewrite links to /resources and /common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a comment, fix python tests Created 4 years, 7 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 b9835ddbdf5a5c389d649d149817c5db91083733..24a8d84c0a9bea9198c1162689c38bc27a80aca4 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
@@ -40,7 +40,7 @@ class DepsUpdater(object):
WPT_DEST_NAME,
'https://chromium.googlesource.com/external/w3c/web-platform-tests.git')
- for resource in ['testharnessreport.js', 'vendor-prefix.js']:
+ for resource in ['testharnessreport.js', 'WebIDLParser.js']:
source = self.path_from_webkit_base('LayoutTests', 'resources', resource)
destination = self.path_from_webkit_base('LayoutTests', 'imported', WPT_DEST_NAME, 'resources', resource)
self.copyfile(source, destination)

Powered by Google App Engine
This is Rietveld 408576698