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 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 96 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
97 '<(modules_idl_files_list)', | 97 '<(modules_idl_files_list)', |
98 '<@(modules_interface_idl_files)', | 98 '<@(modules_interface_idl_files)', |
99 ], | 99 ], |
100 'outputs': [ | 100 'outputs': [ |
101 '<@(bindings_modules_v8_generated_aggregate_files)', | 101 '<@(bindings_modules_v8_generated_aggregate_files)', |
102 ], | 102 ], |
103 'action': [ | 103 'action': [ |
104 'python', | 104 'python', |
105 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 105 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 106 '--component-directory', |
106 'modules', | 107 'modules', |
| 108 '--input-file', |
107 '<(modules_idl_files_list)', | 109 '<(modules_idl_files_list)', |
108 '--', | |
109 '<@(bindings_modules_v8_generated_aggregate_files)', | 110 '<@(bindings_modules_v8_generated_aggregate_files)', |
110 ], | 111 ], |
111 'message': 'Generating aggregate generated modules V8 bindings files', | 112 'message': 'Generating aggregate generated modules V8 bindings files', |
112 }], | 113 }], |
113 }, | 114 }, |
114 ################################################################################ | 115 ################################################################################ |
115 { | 116 { |
116 # GN version: //third_party/WebKit/Source/bindings/modules/v8:bindings_modul
es_impl_generated | 117 # GN version: //third_party/WebKit/Source/bindings/modules/v8:bindings_modul
es_impl_generated |
117 # http://crbug.com/358074; See comments on | 118 # http://crbug.com/358074; See comments on |
118 # 'bindings_core_v8_generated_individual' target | 119 # 'bindings_core_v8_generated_individual' target |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 'bindings_modules_v8_generated_aggregate', | 299 'bindings_modules_v8_generated_aggregate', |
299 'bindings_modules_v8_generated_individual', | 300 'bindings_modules_v8_generated_individual', |
300 'bindings_modules_v8_generated_init_partial', | 301 'bindings_modules_v8_generated_init_partial', |
301 'bindings_modules_v8_generated_partial_aggregate', | 302 'bindings_modules_v8_generated_partial_aggregate', |
302 'bindings_modules_v8_generated_partial_individual', | 303 'bindings_modules_v8_generated_partial_individual', |
303 ], | 304 ], |
304 }, | 305 }, |
305 ################################################################################ | 306 ################################################################################ |
306 ], # targets | 307 ], # targets |
307 } | 308 } |
OLD | NEW |