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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/webgl/update_webgl_conformance_tests.py

Issue 1950113002: Empty webkitpy/common/checkout/scm/__init__.py and update imports. (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/Tools/Scripts/webkitpy/common/checkout/scm/__init__.py ('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/webgl/update_webgl_conformance_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/webgl/update_webgl_conformance_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/webgl/update_webgl_conformance_tests.py
index 6333a9d0bc9642e207ccc984ca875b356f8e331a..8acdff515c03b93c5fd02cde3a8898db471a4a54 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/webgl/update_webgl_conformance_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/webgl/update_webgl_conformance_tests.py
@@ -27,9 +27,10 @@ import optparse
import os
import re
import sys
-from webkitpy.common.checkout import scm
-from webkitpy.common.system.filesystem import FileSystem
+
+from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.system.executive import Executive
+from webkitpy.common.system.filesystem import FileSystem
_log = logging.getLogger(__name__)
@@ -92,7 +93,7 @@ def update_directory(in_dir, out_dir):
def default_out_dir():
- detector = scm.SCMDetector(FileSystem(), Executive())
+ detector = SCMDetector(FileSystem(), Executive())
current_scm = detector.detect_scm_system(os.path.dirname(sys.argv[0]))
if not current_scm:
return os.getcwd()
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698