| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 # 'bindings_core_v8_generated_individual' target | 125 # 'bindings_core_v8_generated_individual' target |
| 126 'target_name': 'bindings_core_dictionary_impl_generated', | 126 'target_name': 'bindings_core_dictionary_impl_generated', |
| 127 'type': 'none', | 127 'type': 'none', |
| 128 'hard_dependency': 1, | 128 'hard_dependency': 1, |
| 129 'dependencies': [ | 129 'dependencies': [ |
| 130 '<(bindings_scripts_dir)/scripts.gyp:cached_jinja_templates', | 130 '<(bindings_scripts_dir)/scripts.gyp:cached_jinja_templates', |
| 131 '<(bindings_scripts_dir)/scripts.gyp:cached_lex_yacc_tables', | 131 '<(bindings_scripts_dir)/scripts.gyp:cached_lex_yacc_tables', |
| 132 '../../modules/generated.gyp:interfaces_info', | 132 '../../modules/generated.gyp:interfaces_info', |
| 133 ], | 133 ], |
| 134 'sources': [ | 134 'sources': [ |
| 135 # FIXME: Add '<@(core_dictionary_idl_files)', | 135 '<@(core_dictionary_idl_files)', |
| 136 # See comment on core/core.gypi | |
| 137 '<@(core_testing_dictionary_idl_files)', | 136 '<@(core_testing_dictionary_idl_files)', |
| 138 ], | 137 ], |
| 139 'actions': [{ | 138 'actions': [{ |
| 140 'action_name': 'idl_dictionary', | 139 'action_name': 'idl_dictionary', |
| 141 # Mark as explicit idl action to prevent MSVS emulation on Windows. | 140 # Mark as explicit idl action to prevent MSVS emulation on Windows. |
| 142 'explicit_idl_action': 1, | 141 'explicit_idl_action': 1, |
| 143 'msvs_cygwin_shell': 0, | 142 'msvs_cygwin_shell': 0, |
| 144 'inputs': [ | 143 'inputs': [ |
| 145 '<@(core_testing_dictionary_idl_files)', | 144 '<@(core_testing_dictionary_idl_files)', |
| 146 '<@(idl_lexer_parser_files)', | 145 '<@(idl_lexer_parser_files)', |
| 147 '<@(idl_cache_files)', | 146 '<@(idl_cache_files)', |
| 148 '<@(idl_compiler_files)', | 147 '<@(idl_compiler_files)', |
| 149 '<(bindings_dir)/IDLExtendedAttributes.txt', | 148 '<(bindings_dir)/IDLExtendedAttributes.txt', |
| 150 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', | 149 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', |
| 151 ], | 150 ], |
| 152 'outputs': [ | 151 'outputs': [ |
| 153 # FIXME: Add '<@(generated_core_dictionary_files)', | 152 '<@(generated_core_dictionary_files)', |
| 154 # See comment on core/core.gypi | |
| 155 '<@(generated_core_testing_dictionary_files)', | 153 '<@(generated_core_testing_dictionary_files)', |
| 156 ], | 154 ], |
| 157 'action': [ | 155 'action': [ |
| 158 'python', | 156 'python', |
| 159 '<(bindings_scripts_dir)/idl_compiler.py', | 157 '<(bindings_scripts_dir)/idl_compiler.py', |
| 160 '--cache-dir', | 158 '--cache-dir', |
| 161 '<(bindings_scripts_output_dir)', | 159 '<(bindings_scripts_output_dir)', |
| 162 '--output-dir', | 160 '--output-dir', |
| 163 '<(SHARED_INTERMEDIATE_DIR)/blink/', | 161 '<(SHARED_INTERMEDIATE_DIR)/blink/', |
| 164 '--interfaces-info', | 162 '--interfaces-info', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 178 'type': 'none', | 176 'type': 'none', |
| 179 'dependencies': [ | 177 'dependencies': [ |
| 180 'bindings_core_dictionary_impl_generated', | 178 'bindings_core_dictionary_impl_generated', |
| 181 'bindings_core_v8_generated_aggregate', | 179 'bindings_core_v8_generated_aggregate', |
| 182 'bindings_core_v8_generated_individual', | 180 'bindings_core_v8_generated_individual', |
| 183 ], | 181 ], |
| 184 }, | 182 }, |
| 185 ################################################################################ | 183 ################################################################################ |
| 186 ], # targets | 184 ], # targets |
| 187 } | 185 } |
| OLD | NEW |