| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 '<@(core_testing_dictionary_idl_files)', | 150 '<@(core_testing_dictionary_idl_files)', |
| 151 '<@(idl_lexer_parser_files)', | 151 '<@(idl_lexer_parser_files)', |
| 152 '<@(idl_cache_files)', | 152 '<@(idl_cache_files)', |
| 153 '<@(idl_compiler_files)', | 153 '<@(idl_compiler_files)', |
| 154 '<(bindings_dir)/IDLExtendedAttributes.txt', | 154 '<(bindings_dir)/IDLExtendedAttributes.txt', |
| 155 '<(bindings_modules_output_dir)/InterfacesInfoOverall.pickle', | 155 '<(bindings_modules_output_dir)/InterfacesInfoOverall.pickle', |
| 156 '<(bindings_core_output_dir)/ComponentInfoCore.pickle', | 156 '<(bindings_core_output_dir)/ComponentInfoCore.pickle', |
| 157 ], | 157 ], |
| 158 'outputs': [ | 158 'outputs': [ |
| 159 '<@(bindings_core_v8_generated_union_type_files)', | 159 '<@(bindings_core_v8_generated_union_type_files)', |
| 160 '<@(bindings_core_v8_generated_testing_union_type_files)', |
| 160 '<@(generated_core_dictionary_files)', | 161 '<@(generated_core_dictionary_files)', |
| 161 '<@(generated_core_testing_dictionary_files)', | 162 '<@(generated_core_testing_dictionary_files)', |
| 162 ], | 163 ], |
| 163 'action': [ | 164 'action': [ |
| 164 'python', | 165 'python', |
| 165 '<(bindings_scripts_dir)/idl_compiler.py', | 166 '<(bindings_scripts_dir)/idl_compiler.py', |
| 166 '--cache-dir', | 167 '--cache-dir', |
| 167 '<(bindings_scripts_output_dir)', | 168 '<(bindings_scripts_output_dir)', |
| 168 '--output-dir', | 169 '--output-dir', |
| 169 '<(bindings_core_v8_output_dir)', | 170 '<(bindings_core_v8_output_dir)', |
| (...skipping 18 matching lines...) Expand all 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 |