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

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

Issue 386963003: [WIP][NotForLand] IDL dictionary support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: sequence and array support Created 6 years, 5 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/DictionaryHelperForCore.cpp ('k') | Source/bindings/core/v8/generated.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/generated.gyp
diff --git a/Source/bindings/core/v8/generated.gyp b/Source/bindings/core/v8/generated.gyp
index 6a61c2e7a4da4a21776f49251ab2f938061acb4a..e92a684297cc52e376c14b2c6c98bc52ec19064a 100644
--- a/Source/bindings/core/v8/generated.gyp
+++ b/Source/bindings/core/v8/generated.gyp
@@ -86,6 +86,8 @@
'<(bindings_scripts_output_dir)',
'--output-dir',
'<(bindings_core_v8_output_dir)',
+ '--impl-output-dir',
+ '<(bindings_core_impl_output_dir)',
'--interfaces-info',
'<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
'--write-file-only-if-changed',
@@ -122,10 +124,35 @@
},
################################################################################
{
+ # FIXME: Write GN version
+ 'target_name': 'bindings_core_dictionaries_generated_aggregate',
+ 'type': 'none',
+ 'actions': [{
+ 'action_name': 'generate_aggregate_dictionaries_core',
+ 'inputs': [
+ '<(bindings_scripts_dir)/aggregate_generated_dictionaries.py',
+ '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
+ ],
+ 'outputs': [
+ '<(bindings_core_dictionaries_generated_aggregate_file)',
+ ],
+ 'action': [
+ 'python',
+ '<(bindings_scripts_dir)/aggregate_generated_dictionaries.py',
+ 'core',
+ '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
+ '<(bindings_core_dictionaries_generated_aggregate_file)',
+ ],
+ 'message': 'Generating aggregate generated core IDL dictionary files',
+ }],
+ },
+################################################################################
+ {
# GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated
'target_name': 'bindings_core_v8_generated',
'type': 'none',
'dependencies': [
+ 'bindings_core_dictionaries_generated_aggregate',
'bindings_core_v8_generated_aggregate',
'bindings_core_v8_generated_individual',
],
« no previous file with comments | « Source/bindings/core/v8/DictionaryHelperForCore.cpp ('k') | Source/bindings/core/v8/generated.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698