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