OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # Generate IDL interfaces info for modules, used to generate bindings | 5 # Generate IDL interfaces info for modules, used to generate bindings |
6 # | 6 # |
7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build | 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build |
8 | 8 |
9 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
135 }, | 135 }, |
136 ################################################################################ | 136 ################################################################################ |
137 { | 137 { |
138 # Global constructors for global objects in modules (ServiceWorker) | 138 # Global constructors for global objects in modules (ServiceWorker) |
139 # but interfaces in core. | 139 # but interfaces in core. |
140 'target_name': 'modules_core_global_constructors_idls', | 140 'target_name': 'modules_core_global_constructors_idls', |
141 'dependencies': [ | 141 'dependencies': [ |
142 'modules_global_objects', | 142 'modules_global_objects', |
143 ], | 143 ], |
144 'variables': { | 144 'variables': { |
145 'idl_files': '<(core_idl_files)', | 145 'idl_files': [ |
146 '<@(core_idl_files)', | |
147 '<@(core_modules_dependency_idl_files)', | |
haraken
2014/10/09 04:24:00
Just help me understand: Why does this take core_i
tasak
2014/10/10 07:52:22
Because:
[before] core_idl_files ==> [now] core_id
| |
148 ], | |
146 'global_objects_file': | 149 'global_objects_file': |
147 '<(bindings_modules_output_dir)/GlobalObjectsModules.pickle', | 150 '<(bindings_modules_output_dir)/GlobalObjectsModules.pickle', |
148 'global_names_idl_files': [ | 151 'global_names_idl_files': [ |
149 'ServiceWorkerGlobalScope', | 152 'ServiceWorkerGlobalScope', |
150 '<(blink_modules_output_dir)/ServiceWorkerGlobalScopeCoreConstructors.id l', | 153 '<(blink_modules_output_dir)/ServiceWorkerGlobalScopeCoreConstructors.id l', |
151 ], | 154 ], |
152 'outputs': [ | 155 'outputs': [ |
153 '<@(modules_core_global_constructors_generated_idl_files)', | 156 '<@(modules_core_global_constructors_generated_idl_files)', |
154 '<@(modules_core_global_constructors_generated_header_files)', | 157 '<@(modules_core_global_constructors_generated_header_files)', |
155 ], | 158 ], |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', | 215 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', |
213 ], | 216 ], |
214 'output_file': | 217 'output_file': |
215 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', | 218 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', |
216 }, | 219 }, |
217 'includes': ['../../bindings/scripts/interfaces_info_overall.gypi'], | 220 'includes': ['../../bindings/scripts/interfaces_info_overall.gypi'], |
218 }, | 221 }, |
219 ################################################################################ | 222 ################################################################################ |
220 ], # targets | 223 ], # targets |
221 } | 224 } |
OLD | NEW |