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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py

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/webkitpy/bindings/bindings_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
index fd2acb9488a16c69459433ec53d5ebcd7224b918..5147f1541b3f6cd9673ec93e34153869a4954285 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
@@ -31,8 +31,8 @@ import tempfile
from webkitpy.common.system.executive import Executive
-from webkitpy.common import webkit_finder
-webkit_finder.add_bindings_scripts_dir_to_sys_path()
+from webkitpy.common import path_finder
+path_finder.add_bindings_scripts_dir_to_sys_path()
from code_generator_v8 import CodeGeneratorDictionaryImpl
from code_generator_v8 import CodeGeneratorV8
@@ -77,7 +77,7 @@ DEPENDENCY_IDL_FILES = frozenset([
COMPONENT_DIRECTORY = frozenset(['core', 'modules'])
-SOURCE_PATH = webkit_finder.get_source_dir()
+SOURCE_PATH = path_finder.get_source_dir()
TEST_INPUT_DIRECTORY = os.path.join(SOURCE_PATH, 'bindings', 'tests', 'idls')
REFERENCE_DIRECTORY = os.path.join(SOURCE_PATH, 'bindings', 'tests', 'results')

Powered by Google App Engine
This is Rietveld 408576698