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

Unified Diff: Tools/Scripts/webkitpy/bindings/main.py

Issue 124913002: IDL compiler: Pickle interface information (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revised Created 6 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 | « Source/bindings/scripts/unstable/interface_dependency_resolver.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/bindings/main.py
diff --git a/Tools/Scripts/webkitpy/bindings/main.py b/Tools/Scripts/webkitpy/bindings/main.py
index e756ebfa6c8510197c2d4bc3b05989baaf7c6cef..ce3626089154f52ef399f621993bf4cbd523b942 100644
--- a/Tools/Scripts/webkitpy/bindings/main.py
+++ b/Tools/Scripts/webkitpy/bindings/main.py
@@ -90,6 +90,7 @@ class BindingsTests(object):
self.verbose = verbose
self.executive = executive
_, self.interface_dependencies_filename = provider.newtempfile()
+ _, self.interfaces_filename = provider.newtempfile()
_, self.derived_sources_list_filename = provider.newtempfile()
# Generate output into the reference directory if resetting results, or
# a temp directory if not.
@@ -132,8 +133,7 @@ class BindingsTests(object):
'--output-dir', self.output_directory_py,
'--idl-attributes-file', 'bindings/IDLExtendedAttributes.txt',
'--include', '.',
- '--interface-dependencies-file',
- self.interface_dependencies_filename,
+ '--interfaces-info-file', self.interfaces_filename,
idl_file]
try:
self.run_command(cmd)
@@ -170,6 +170,7 @@ class BindingsTests(object):
'--main-idl-files-list', main_idl_files_list_filename,
'--support-idl-files-list', support_idl_files_list_filename,
'--interface-dependencies-file', self.interface_dependencies_filename,
+ '--interfaces-info-file', self.interfaces_filename,
'--bindings-derived-sources-file', self.derived_sources_list_filename,
'--window-constructors-file', window_constructors_file,
'--workerglobalscope-constructors-file', workerglobalscope_constructors_file,
« no previous file with comments | « Source/bindings/scripts/unstable/interface_dependency_resolver.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698