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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 'sources': [ | 133 'sources': [ |
134 '<@(core_dictionary_idl_files)', | 134 '<@(core_dictionary_idl_files)', |
135 '<@(core_testing_dictionary_idl_files)', | 135 '<@(core_testing_dictionary_idl_files)', |
136 ], | 136 ], |
137 'actions': [{ | 137 'actions': [{ |
138 'action_name': 'idl_dictionary', | 138 'action_name': 'idl_dictionary', |
139 # Mark as explicit idl action to prevent MSVS emulation on Windows. | 139 # Mark as explicit idl action to prevent MSVS emulation on Windows. |
140 'explicit_idl_action': 1, | 140 'explicit_idl_action': 1, |
141 'msvs_cygwin_shell': 0, | 141 'msvs_cygwin_shell': 0, |
142 'inputs': [ | 142 'inputs': [ |
| 143 '<@(core_dictionary_idl_files)', |
143 '<@(core_testing_dictionary_idl_files)', | 144 '<@(core_testing_dictionary_idl_files)', |
144 '<@(idl_lexer_parser_files)', | 145 '<@(idl_lexer_parser_files)', |
145 '<@(idl_cache_files)', | 146 '<@(idl_cache_files)', |
146 '<@(idl_compiler_files)', | 147 '<@(idl_compiler_files)', |
147 '<(bindings_dir)/IDLExtendedAttributes.txt', | 148 '<(bindings_dir)/IDLExtendedAttributes.txt', |
148 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', | 149 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', |
149 ], | 150 ], |
150 'outputs': [ | 151 'outputs': [ |
151 '<@(generated_core_dictionary_files)', | 152 '<@(generated_core_dictionary_files)', |
152 '<@(generated_core_testing_dictionary_files)', | 153 '<@(generated_core_testing_dictionary_files)', |
(...skipping 22 matching lines...) Expand all Loading... |
175 'type': 'none', | 176 'type': 'none', |
176 'dependencies': [ | 177 'dependencies': [ |
177 'bindings_core_dictionary_impl_generated', | 178 'bindings_core_dictionary_impl_generated', |
178 'bindings_core_v8_generated_aggregate', | 179 'bindings_core_v8_generated_aggregate', |
179 'bindings_core_v8_generated_individual', | 180 'bindings_core_v8_generated_individual', |
180 ], | 181 ], |
181 }, | 182 }, |
182 ################################################################################ | 183 ################################################################################ |
183 ], # targets | 184 ], # targets |
184 } | 185 } |
OLD | NEW |