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

Side by Side Diff: Source/bindings/modules/generated.gyp

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed http/tests/serviceworker/fetch\* regression Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698