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

Unified Diff: Source/core/core_generated.gyp

Issue 310563004: IDL build: Split global constructors into core and modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Better includes and FIXMEs in core.gyp 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
Index: Source/core/core_generated.gyp
diff --git a/Source/core/core_generated.gyp b/Source/core/core_generated.gyp
index 1564e5ea23574029f87993692cf9624f00909ea0..90560eb9a49243afcf182c96f1e7a9bbd75fe330 100644
--- a/Source/core/core_generated.gyp
+++ b/Source/core/core_generated.gyp
@@ -38,11 +38,11 @@
'targets': [
{
- 'target_name': 'core_bindings_generated',
+ 'target_name': 'core_event_interfaces',
'type': 'none',
'actions': [
{
- 'action_name': 'event_interfaces',
+ 'action_name': 'make_core_event_interfaces',
'variables': {
'event_idl_files': [
'<@(core_event_idl_files)',
@@ -51,13 +51,14 @@
'<|(event_idl_files_list.tmp <@(event_idl_files))',
},
'inputs': [
+ # FIXME: should be in build/scripts, not bindings/scripts
'../bindings/scripts/generate_event_interfaces.py',
'../bindings/scripts/utilities.py',
'<(event_idl_files_list)',
'<@(event_idl_files)',
],
'outputs': [
- '<(blink_output_dir)/EventInterfaces.in',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in',
],
'action': [
'python',
@@ -65,7 +66,7 @@
'--event-idl-files-list',
'<(event_idl_files_list)',
'--event-interfaces-file',
- '<(blink_output_dir)/EventInterfaces.in',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in',
'--write-file-only-if-changed',
'<(write_file_only_if_changed)',
],
@@ -130,7 +131,7 @@
'hard_dependency': 1,
'dependencies': [
'generated_testing_idls',
- 'core_bindings_generated',
+ 'core_event_interfaces',
'../config.gyp:config',
],
'sources': [

Powered by Google App Engine
This is Rietveld 408576698