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

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

Issue 2010163003: Fix paths of testharness*, WebIDLParser.js, idlharness.js, vendor-prefix.js for remaining files … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « third_party/WebKit/LayoutTests/imported/wpt/webstorage/idlharness.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 24a8d84c0a9bea9198c1162689c38bc27a80aca4..590c3460572c2848c792ebecf4287c73fc4d3cf7 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py
@@ -45,6 +45,11 @@ class DepsUpdater(object):
destination = self.path_from_webkit_base('LayoutTests', 'imported', WPT_DEST_NAME, 'resources', resource)
self.copyfile(source, destination)
self.run(['git', 'add', destination])
+ for resource in ['vendor-prefix.js']:
+ source = self.path_from_webkit_base('LayoutTests', 'resources', resource)
+ destination = self.path_from_webkit_base('LayoutTests', 'imported', WPT_DEST_NAME, 'common', resource)
+ self.copyfile(source, destination)
+ self.run(['git', 'add', destination])
elif self.target == 'css':
import_commitish = self.update(
« no previous file with comments | « third_party/WebKit/LayoutTests/imported/wpt/webstorage/idlharness.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698