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

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

Issue 306633002: Split bindings output between core and modules! (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix aggregate paths 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/bindings/core/v8/generated.gypi ('k') | Source/bindings/modules/modules.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/modules/generated.gyp
diff --git a/Source/bindings/modules/generated.gyp b/Source/bindings/modules/generated.gyp
index 8161755a3c4579473608e306ac1926d42a95b009..967c8fa8ba173d2deb37a166ec4a3f43dd99c741 100644
--- a/Source/bindings/modules/generated.gyp
+++ b/Source/bindings/modules/generated.gyp
@@ -9,8 +9,10 @@
{
'includes': [
'../bindings.gypi',
+ '../core/core.gypi',
'../scripts/scripts.gypi',
'idl.gypi',
+ 'modules.gypi',
],
'targets': [
@@ -34,7 +36,7 @@
# '<@(modules_generated_idl_files)',
],
'outputs': [
- '<(blink_output_dir)/InterfacesInfoModulesIndividual.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
],
'action': [
'python',
@@ -42,7 +44,7 @@
'--idl-files-list',
'<(modules_static_idl_files_list)',
'--interfaces-info-file',
- '<(blink_output_dir)/InterfacesInfoModulesIndividual.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
'--write-file-only-if-changed',
'<(write_file_only_if_changed)',
# No generated files currently, will add with constructors
@@ -65,11 +67,11 @@
'action_name': 'compute_interfaces_info_overall',
'inputs': [
'<(bindings_scripts_dir)/compute_interfaces_info_overall.py',
- '<(blink_output_dir)/InterfacesInfoCoreIndividual.pickle',
- '<(blink_output_dir)/InterfacesInfoModulesIndividual.pickle',
+ '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
],
'outputs': [
- '<(blink_output_dir)/InterfacesInfo.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
],
'action': [
'python',
@@ -77,9 +79,9 @@
'--write-file-only-if-changed',
'<(write_file_only_if_changed)',
'--',
- '<(blink_output_dir)/InterfacesInfoCoreIndividual.pickle',
- '<(blink_output_dir)/InterfacesInfoModulesIndividual.pickle',
- '<(blink_output_dir)/InterfacesInfo.pickle',
+ '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
+ '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
],
'message': 'Computing overall global information about IDL files',
}]
« no previous file with comments | « Source/bindings/core/v8/generated.gypi ('k') | Source/bindings/modules/modules.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698