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

Unified Diff: Source/bindings/scripts/interfaces_info_individual.gypi

Issue 680193003: IDL: Generate union type containers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/bindings/scripts/interfaces_info_individual.gypi
diff --git a/Source/bindings/scripts/interfaces_info_individual.gypi b/Source/bindings/scripts/interfaces_info_individual.gypi
index c1101cb30c0cb83ca77df44686a9c526735a7f9c..1934eb39ddbf5422136e6c8a6cd83bef632096ed 100644
--- a/Source/bindings/scripts/interfaces_info_individual.gypi
+++ b/Source/bindings/scripts/interfaces_info_individual.gypi
@@ -25,7 +25,8 @@
# dependencies and testing.
# generated_idl_files - All generated .idl files for the component.
# (Must be separate from static because build dir not know at gyp time.)
-# output_file - Pickle file containing output.
+# interfaces_info_file - Output pickle file containing interfaces info.
+# component_info_file - Output pickle file containing component-wide info.
#
# Design document: http://www.chromium.org/developers/design-documents/idl-build
@@ -46,7 +47,8 @@
'<@(generated_idl_files)',
],
'outputs': [
- '<(output_file)',
+ '<(interfaces_info_file)',
+ '<(component_info_file)',
],
'action': [
@@ -57,7 +59,9 @@
'--idl-files-list',
'<(static_idl_files_list)',
'--interfaces-info-file',
- '<(output_file)',
+ '<(interfaces_info_file)',
+ '--component-info-file',
+ '<(component_info_file)',
'--write-file-only-if-changed',
'<(write_file_only_if_changed)',
'--',

Powered by Google App Engine
This is Rietveld 408576698