| 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 core, plus aggregate bindings files. | 5 # Generate IDL bindings for core, 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 107 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 108 '<(core_idl_files_list)', | 108 '<(core_idl_files_list)', |
| 109 '<@(core_interface_idl_files)', | 109 '<@(core_interface_idl_files)', |
| 110 ], | 110 ], |
| 111 'outputs': [ | 111 'outputs': [ |
| 112 '<@(bindings_core_v8_generated_aggregate_files)', | 112 '<@(bindings_core_v8_generated_aggregate_files)', |
| 113 ], | 113 ], |
| 114 'action': [ | 114 'action': [ |
| 115 'python', | 115 'python', |
| 116 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 116 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 117 '--component-directory', |
| 117 'core', | 118 'core', |
| 119 '--input-file', |
| 118 '<(core_idl_files_list)', | 120 '<(core_idl_files_list)', |
| 119 '--', | |
| 120 '<@(bindings_core_v8_generated_aggregate_files)', | 121 '<@(bindings_core_v8_generated_aggregate_files)', |
| 121 ], | 122 ], |
| 122 'message': 'Generating aggregate generated core V8 bindings files', | 123 'message': 'Generating aggregate generated core V8 bindings files', |
| 123 }], | 124 }], |
| 124 }, | 125 }, |
| 125 ################################################################################ | 126 ################################################################################ |
| 126 { | 127 { |
| 127 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_imp
l_generated | 128 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_imp
l_generated |
| 128 # http://crbug.com/358074; See comments on | 129 # http://crbug.com/358074; See comments on |
| 129 # 'bindings_core_v8_generated_individual' target | 130 # 'bindings_core_v8_generated_individual' target |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'type': 'none', | 189 'type': 'none', |
| 189 'dependencies': [ | 190 'dependencies': [ |
| 190 'bindings_core_impl_generated', | 191 'bindings_core_impl_generated', |
| 191 'bindings_core_v8_generated_aggregate', | 192 'bindings_core_v8_generated_aggregate', |
| 192 'bindings_core_v8_generated_individual', | 193 'bindings_core_v8_generated_individual', |
| 193 ], | 194 ], |
| 194 }, | 195 }, |
| 195 ################################################################################ | 196 ################################################################################ |
| 196 ], # targets | 197 ], # targets |
| 197 } | 198 } |
| OLD | NEW |