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

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

Issue 2650433002: Remove sync_wpt and add wpt-export to replace it. (Closed)
Patch Set: Rebased Created 3 years, 11 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/Tools/Scripts/sync-wpt ('k') | third_party/WebKit/Tools/Scripts/wpt-export » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync_wpt.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync_wpt.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync_wpt.py
deleted file mode 100644
index a187322a37fdffe4c48c62ff4de1135b36cb8aba..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/sync_wpt.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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.
-
-"""A script for exporting and importing changes between the Chromium repo
-and the web-platform-tests repo.
-"""
-
-import argparse
-import logging
-
-from webkitpy.common.host import Host
-from webkitpy.w3c.wpt_github import WPTGitHub
-from webkitpy.w3c.test_exporter import TestExporter
-from webkitpy.w3c.test_importer import configure_logging
-
-_log = logging.getLogger(__name__)
-
-
-def main():
- configure_logging()
- options = parse_args()
- host = Host()
- wpt_github = WPTGitHub(host)
- test_exporter = TestExporter(host, wpt_github, dry_run=options.dry_run)
-
- test_exporter.run()
-
-
-def parse_args():
- parser = argparse.ArgumentParser(description='WPT Sync')
- parser.add_argument('--no-fetch', action='store_true')
- parser.add_argument('--dry-run', action='store_true')
- return parser.parse_args()
« no previous file with comments | « third_party/WebKit/Tools/Scripts/sync-wpt ('k') | third_party/WebKit/Tools/Scripts/wpt-export » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698