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

Unified Diff: third_party/WebKit/Source/devtools/scripts/compile_frontend.py

Issue 2453673002: [DevTools] Scope common protocol infrastructure under Protocol namespace in a separate module. (Closed)
Patch Set: Created 4 years, 2 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/Source/devtools/scripts/compile_frontend.py
diff --git a/third_party/WebKit/Source/devtools/scripts/compile_frontend.py b/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
index 9f6e5ca0ad733d779b21d329186245d70650b4ad..d6d2c393f28ea827c11dbc7f6ce65b52dc0c22af 100755
--- a/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
+++ b/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
@@ -335,8 +335,7 @@ def dump_module(name, recursively, processed_modules):
command += module_arg(name) + ':'
filtered_scripts = descriptors.module_compiled_files(name)
filtered_scripts = [path.join(devtools_frontend_path, name, script) for script in filtered_scripts]
- # TODO(dgozman): move to separate module
- if name == 'sdk':
+ if name == 'protocol':
filtered_scripts.append(protocol_externs_file)
command += str(len(filtered_scripts))
first_dependency = True

Powered by Google App Engine
This is Rietveld 408576698