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

Unified Diff: Source/modules/modules.gyp

Issue 308743004: Move bindings_modules_generated from modules to bindings/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix nits from review comments. Created 6 years, 7 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/core/core.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/modules.gyp
diff --git a/Source/modules/modules.gyp b/Source/modules/modules.gyp
index 9b09014759442367d2bf75a2808f156034df9f51..5c3d8bab133ec3239c6caeb3bf748bf0da1670e0 100644
--- a/Source/modules/modules.gyp
+++ b/Source/modules/modules.gyp
@@ -56,43 +56,6 @@
'msvs_disabled_warnings': [ 4267, 4334, ]
},
{
- 'target_name': 'modules_bindings_generated',
- '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': [
- '../bindings/scripts/generate_event_interfaces.py',
- '../bindings/scripts/utilities.py',
- '<(event_idl_files_list)',
- '<@(event_idl_files)',
- ],
- 'outputs': [
- '<(blink_output_dir)/EventModulesInterfaces.in',
- ],
- 'action': [
- 'python',
- '../bindings/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',
- ],
- },
- ],
- },
- {
'target_name': 'modules_testing',
'type': 'static_library',
'dependencies': [
@@ -115,7 +78,7 @@
'dependencies': [
#'generated_testing_idls',
'../core/core_generated.gyp:core_bindings_generated',
- 'modules_bindings_generated',
+ '../bindings/modules/generated.gyp:bindings_modules_generated',
'../config.gyp:config',
],
'sources': [
@@ -124,79 +87,6 @@
'../core/xml/XPathGrammar.y',
],
'actions': [
- {
- '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)',
- 'EventTargetModulesFactory.in',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesHeaders.h',
- '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesInterfaces.h',
- ],
- 'action': [
- 'python',
- '../build/scripts/make_event_factory.py',
- 'EventTargetModulesFactory.in',
- '--output_dir',
- '<(SHARED_INTERMEDIATE_DIR)/blink',
- ],
- },
- {
- 'action_name': 'EventTargetModulesNames',
- 'inputs': [
- '<@(make_names_files)',
- 'EventTargetModulesFactory.in',
- ],
- 'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.cpp',
- '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.h',
- ],
- 'action': [
- 'python',
- '../build/scripts/make_names.py',
- 'EventTargetModulesFactory.in',
- '--output_dir',
- '<(SHARED_INTERMEDIATE_DIR)/blink',
- ],
- },
],
}],
}
« no previous file with comments | « Source/core/core.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698