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