| Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..774955ca2faa723e5339baec117580e50cb7f47c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync.py
|
| @@ -0,0 +1,18 @@
|
| +# 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.
|
| +
|
| +import argparse
|
| +from webkitpy.common.host import Host
|
| +from webkitpy.w3c.test_exporter import TestExporter
|
| +
|
| +
|
| +def main():
|
| + parser = argparse.ArgumentParser(description='WPT Sync')
|
| + parser.add_argument('--no-fetch', action='store_true')
|
| + options = parser.parse_args()
|
| +
|
| + test_exporter = TestExporter(host=Host(), options=options)
|
| + test_exporter.run()
|
| +
|
| + # Afterward: run importer
|
|
|