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

Unified Diff: third_party/WebKit/Tools/Scripts/sync-w3c-tests

Issue 2439153002: Script for exporting WPT (Closed)
Patch Set: Clean up finding Cr-Commit-Pos in WPT with one neat trick Created 4 years, 1 month 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/sync-w3c-tests
diff --git a/build/linux/unbundle/libwebp.gn b/third_party/WebKit/Tools/Scripts/sync-w3c-tests
old mode 100644
new mode 100755
similarity index 65%
copy from build/linux/unbundle/libwebp.gn
copy to third_party/WebKit/Tools/Scripts/sync-w3c-tests
index 217911167b95466b4a64790f4cff7449da4a7253..f2d608f38f1030a5b0f1cdaf244765d7fe8c78be
--- a/build/linux/unbundle/libwebp.gn
+++ b/third_party/WebKit/Tools/Scripts/sync-w3c-tests
@@ -1,10 +1,10 @@
+#!/usr/bin/env python
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("libwebp") {
- libs = [
- "webp",
- "webpdemux",
- ]
-}
+import sys
+from webkitpy.w3c import sync
foolip 2016/11/01 22:07:44 Total nit, but maybe sync-wpt is a more accurate n
+
+
+sys.exit(sync.main())

Powered by Google App Engine
This is Rietveld 408576698