Chromium Code Reviews| Index: Source/bindings/modules/generated.gyp |
| diff --git a/Source/bindings/modules/generated.gyp b/Source/bindings/modules/generated.gyp |
| index 1ecee51530963d070f226febc07ef1fa8c8b5368..5a7ffd43bd4f86d6331344c9ff2a98096c27fbd2 100644 |
| --- a/Source/bindings/modules/generated.gyp |
| +++ b/Source/bindings/modules/generated.gyp |
| @@ -8,6 +8,7 @@ |
| { |
| 'includes': [ |
| + '../../build/scripts/scripts.gypi', |
| '../bindings.gypi', |
| '../core/core.gypi', |
| '../scripts/scripts.gypi', |
| @@ -18,6 +19,116 @@ |
| 'targets': [ |
| ################################################################################ |
| { |
| + 'target_name': 'modules_bindings_generated', |
|
Nils Barth (inactive)
2014/06/02 02:02:09
Could you rename this to
bindings_modules_generate
c.shu
2014/06/02 15:48:17
Done.
|
| + 'type': 'none', |
| + 'actions': [ |
| + { |
| + 'action_name': 'event_interfaces', |
| + 'variables': { |
| + 'event_idl_files': [ |
| + '<@(modules_event_idl_files)', |
| + ], |
| + 'event_idl_files_list': |
| + '<|(event_idl_files_list.tmp <@(event_idl_files))', |
| + }, |
| + 'inputs': [ |
| + '../scripts/generate_event_interfaces.py', |
|
Nils Barth (inactive)
2014/06/02 02:02:09
Could you use:
<(bindings_scripts_dir)
...instead
c.shu
2014/06/02 15:48:17
Done.
|
| + '../scripts/utilities.py', |
| + '<(event_idl_files_list)', |
| + '<@(event_idl_files)', |
| + ], |
| + 'outputs': [ |
| + '<(blink_output_dir)/EventModulesInterfaces.in', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '../scripts/generate_event_interfaces.py', |
| + '--event-idl-files-list', |
| + '<(event_idl_files_list)', |
| + '--event-interfaces-file', |
| + '<(blink_output_dir)/EventModulesInterfaces.in', |
| + '--write-file-only-if-changed', |
| + '<(write_file_only_if_changed)', |
| + '--suffix', |
| + 'Modules', |
| + ], |
| + }, |
| + { |
| + 'action_name': 'EventModulesFactory', |
| + 'inputs': [ |
| + '<@(make_event_factory_files)', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesInterfaces.in', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModules.cpp', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesHeaders.h', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesInterfaces.h', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '../../build/scripts/make_event_factory.py', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesInterfaces.in', |
| + '--output_dir', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink', |
| + ], |
| + }, |
| + { |
| + 'action_name': 'EventModulesNames', |
| + 'inputs': [ |
| + '<@(make_names_files)', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesInterfaces.in', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesNames.cpp', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesNames.h', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '../../build/scripts/make_names.py', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventModulesInterfaces.in', |
| + '--output_dir', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink', |
| + ], |
| + }, |
| + { |
| + 'action_name': 'EventTargetModulesFactory', |
| + 'inputs': [ |
| + '<@(make_event_factory_files)', |
| + '../../modules/EventTargetModulesFactory.in', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesHeaders.h', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesInterfaces.h', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '../../build/scripts/make_event_factory.py', |
| + '../../modules/EventTargetModulesFactory.in', |
| + '--output_dir', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink', |
| + ], |
| + }, |
| + { |
| + 'action_name': 'EventTargetModulesNames', |
| + 'inputs': [ |
| + '<@(make_names_files)', |
| + '../../modules/EventTargetModulesFactory.in', |
| + ], |
| + 'outputs': [ |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.cpp', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.h', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '../../build/scripts/make_names.py', |
| + '../../modules/EventTargetModulesFactory.in', |
| + '--output_dir', |
| + '<(SHARED_INTERMEDIATE_DIR)/blink', |
| + ], |
| + }, |
| + ], |
| + }, |
| + { |
| 'target_name': 'interfaces_info_individual_modules', |
| 'type': 'none', |
| 'dependencies': [ |