Chromium Code Reviews| 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()) |