| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 ################################################################################ | 99 ################################################################################ |
| 100 { | 100 { |
| 101 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_
generated_aggregate | 101 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_
generated_aggregate |
| 102 'target_name': 'bindings_core_v8_generated_aggregate', | 102 'target_name': 'bindings_core_v8_generated_aggregate', |
| 103 'type': 'none', | 103 'type': 'none', |
| 104 'actions': [{ | 104 'actions': [{ |
| 105 'action_name': 'generate_aggregate_bindings_core_v8', | 105 'action_name': 'generate_aggregate_bindings_core_v8', |
| 106 'inputs': [ | 106 'inputs': [ |
| 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 ], | 110 ], |
| 110 'outputs': [ | 111 'outputs': [ |
| 111 '<@(bindings_core_v8_generated_aggregate_files)', | 112 '<@(bindings_core_v8_generated_aggregate_files)', |
| 112 ], | 113 ], |
| 113 'action': [ | 114 'action': [ |
| 114 'python', | 115 'python', |
| 115 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 116 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 116 'core', | 117 'core', |
| 117 '<(core_idl_files_list)', | 118 '<(core_idl_files_list)', |
| 118 '--', | 119 '--', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'type': 'none', | 188 'type': 'none', |
| 188 'dependencies': [ | 189 'dependencies': [ |
| 189 'bindings_core_impl_generated', | 190 'bindings_core_impl_generated', |
| 190 'bindings_core_v8_generated_aggregate', | 191 'bindings_core_v8_generated_aggregate', |
| 191 'bindings_core_v8_generated_individual', | 192 'bindings_core_v8_generated_individual', |
| 192 ], | 193 ], |
| 193 }, | 194 }, |
| 194 ################################################################################ | 195 ################################################################################ |
| 195 ], # targets | 196 ], # targets |
| 196 } | 197 } |
| OLD | NEW |