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

Unified Diff: Source/bindings/core/generated.gyp

Issue 328643002: IDL build: factor out interface_info actions into GYP templates (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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 | « no previous file | Source/bindings/modules/generated.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/generated.gyp
diff --git a/Source/bindings/core/generated.gyp b/Source/bindings/core/generated.gyp
index f9b0bbecf0bc3b964b8c6e8af6af6f1c38a1f149..2492486fe305399fc7f2f914ee66a11d5c799dc9 100644
--- a/Source/bindings/core/generated.gyp
+++ b/Source/bindings/core/generated.gyp
@@ -54,40 +54,18 @@
################################################################################
{
'target_name': 'interfaces_info_individual_core',
- 'type': 'none',
'dependencies': [
'../../core/core_generated.gyp:generated_testing_idls',
'core_global_constructors_idls',
],
- 'actions': [{
- 'action_name': 'compute_interfaces_info_individual_core',
- 'inputs': [
- '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
- '<(bindings_scripts_dir)/utilities.py',
- '<(core_static_idl_files_list)',
- '<@(core_static_idl_files)',
- '<@(core_generated_idl_files)',
- ],
- 'outputs': [
- '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
- ],
- 'action': [
- 'python',
- '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
- '--component-dir',
- 'core',
- '--idl-files-list',
- '<(core_static_idl_files_list)',
- '--interfaces-info-file',
+ 'variables': {
+ 'static_idl_files': '<(core_static_idl_files)',
+ 'generated_idl_files': '<(core_generated_idl_files)',
+ 'component_dir': 'core',
+ 'output_file':
'<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
- '--write-file-only-if-changed',
- '<(write_file_only_if_changed)',
- '--',
- # Generated files must be passed at command line
- '<@(core_generated_idl_files)',
- ],
- 'message': 'Computing global information about individual IDL files',
- }]
+ },
+ 'includes': ['../../bindings/scripts/interfaces_info_individual.gypi'],
},
################################################################################
], # targets
« no previous file with comments | « no previous file | Source/bindings/modules/generated.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698