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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/generated.gyp

Issue 2259463002: [Bindings] Specify if we aggregate partial interfaces by arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
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 bindings for modules, plus aggregate bindings files. 5 # Generate IDL bindings for modules, plus aggregate bindings files.
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 'inputs': [ 248 'inputs': [
249 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', 249 '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
250 '<(core_idl_with_modules_dependency_files_list)', 250 '<(core_idl_with_modules_dependency_files_list)',
251 ], 251 ],
252 'outputs': [ 252 'outputs': [
253 '<@(bindings_modules_v8_generated_partial_aggregate_files)', 253 '<@(bindings_modules_v8_generated_partial_aggregate_files)',
254 ], 254 ],
255 'action': [ 255 'action': [
256 'python', 256 'python',
257 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', 257 '<(bindings_scripts_dir)/aggregate_generated_bindings.py',
258 '--component-directory',
258 'modules', 259 'modules',
260 '--input-file',
259 '<(core_idl_with_modules_dependency_files_list)', 261 '<(core_idl_with_modules_dependency_files_list)',
260 '--', 262 '--partial',
261 '<@(bindings_modules_v8_generated_partial_aggregate_files)', 263 '<@(bindings_modules_v8_generated_partial_aggregate_files)',
262 ], 264 ],
263 'message': 'Generating aggregate generated modules V8 partial bindings fil es', 265 'message': 'Generating aggregate generated modules V8 partial bindings fil es',
264 }], 266 }],
265 }, 267 },
266 ################################################################################ 268 ################################################################################
267 { 269 {
268 'target_name': 'bindings_modules_v8_generated_init_partial', 270 'target_name': 'bindings_modules_v8_generated_init_partial',
269 'type': 'none', 271 'type': 'none',
270 'actions': [{ 272 'actions': [{
(...skipping 28 matching lines...) Expand all
299 'bindings_modules_v8_generated_aggregate', 301 'bindings_modules_v8_generated_aggregate',
300 'bindings_modules_v8_generated_individual', 302 'bindings_modules_v8_generated_individual',
301 'bindings_modules_v8_generated_init_partial', 303 'bindings_modules_v8_generated_init_partial',
302 'bindings_modules_v8_generated_partial_aggregate', 304 'bindings_modules_v8_generated_partial_aggregate',
303 'bindings_modules_v8_generated_partial_individual', 305 'bindings_modules_v8_generated_partial_individual',
304 ], 306 ],
305 }, 307 },
306 ################################################################################ 308 ################################################################################
307 ], # targets 309 ], # targets
308 } 310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698