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

Unified Diff: third_party/WebKit/Tools/Scripts/test-webkitpy

Issue 2878873002: webkitpy: Rename WebKitFinder to PathFinder (Closed)
Patch Set: Created 3 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
Index: third_party/WebKit/Tools/Scripts/test-webkitpy
diff --git a/third_party/WebKit/Tools/Scripts/test-webkitpy b/third_party/WebKit/Tools/Scripts/test-webkitpy
index cb02d92a96a58e179712de8db2d87c8231f12283..4edba7690576491ba1709d1ecba9c114f4198447 100755
--- a/third_party/WebKit/Tools/Scripts/test-webkitpy
+++ b/third_party/WebKit/Tools/Scripts/test-webkitpy
@@ -31,8 +31,8 @@
import os
import sys
-from webkitpy.common import webkit_finder
-webkit_finder.add_typ_dir_to_sys_path()
+from webkitpy.common import path_finder
+path_finder.add_typ_dir_to_sys_path()
import typ
@@ -49,7 +49,7 @@ if sys.platform == 'win32':
'webkitpy.layout_tests.layout_package.bot_test_expectations_unittest.*',
]
-sys.exit(typ.main(top_level_dir=webkit_finder.get_scripts_dir(),
+sys.exit(typ.main(top_level_dir=path_finder.get_scripts_dir(),
skip=skip,
- path=[webkit_finder.get_webkitpy_thirdparty_dir()],
+ path=[path_finder.get_webkitpy_thirdparty_dir()],
win_multiprocessing='spawn'))

Powered by Google App Engine
This is Rietveld 408576698