| 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 11 matching lines...) Expand all Loading... |
| 22 'generated.gypi', | 22 'generated.gypi', |
| 23 ], | 23 ], |
| 24 | 24 |
| 25 'targets': [ | 25 'targets': [ |
| 26 ################################################################################ | 26 ################################################################################ |
| 27 { | 27 { |
| 28 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_
generated_individual | 28 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_
generated_individual |
| 29 'target_name': 'bindings_core_v8_generated_individual', | 29 'target_name': 'bindings_core_v8_generated_individual', |
| 30 'type': 'none', | 30 'type': 'none', |
| 31 # The 'binding' rule generates .h files, so mark as hard_dependency, per: | 31 # The 'binding' rule generates .h files, so mark as hard_dependency, per: |
| 32 # https://code.google.com/p/gyp/wiki/InputFormatReference#Linking_Dependenci
es | 32 # https://gyp.gsrc.io/docs/InputFormatReference.md#Linking-Dependencies |
| 33 'hard_dependency': 1, | 33 'hard_dependency': 1, |
| 34 'dependencies': [ | 34 'dependencies': [ |
| 35 '../../../core/core_generated.gyp:generated_testing_idls', | 35 '../../../core/core_generated.gyp:generated_testing_idls', |
| 36 '../generated.gyp:core_global_constructors_idls', | 36 '../generated.gyp:core_global_constructors_idls', |
| 37 # FIXME: should not depend on modules, but partial interface definitions | 37 # FIXME: should not depend on modules, but partial interface definitions |
| 38 # in modules change bindings for core http://crbug.com/358074 | 38 # in modules change bindings for core http://crbug.com/358074 |
| 39 '../../modules/generated.gyp:modules_global_constructors_idls', | 39 '../../modules/generated.gyp:modules_global_constructors_idls', |
| 40 '<(bindings_scripts_dir)/scripts.gyp:cached_jinja_templates', | 40 '<(bindings_scripts_dir)/scripts.gyp:cached_jinja_templates', |
| 41 '<(bindings_scripts_dir)/scripts.gyp:cached_lex_yacc_tables', | 41 '<(bindings_scripts_dir)/scripts.gyp:cached_lex_yacc_tables', |
| 42 # FIXME: should be interfaces_info_core (w/o modules) | 42 # FIXME: should be interfaces_info_core (w/o modules) |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'type': 'none', | 188 'type': 'none', |
| 189 'dependencies': [ | 189 'dependencies': [ |
| 190 'bindings_core_impl_generated', | 190 'bindings_core_impl_generated', |
| 191 'bindings_core_v8_generated_aggregate', | 191 'bindings_core_v8_generated_aggregate', |
| 192 'bindings_core_v8_generated_individual', | 192 'bindings_core_v8_generated_individual', |
| 193 ], | 193 ], |
| 194 }, | 194 }, |
| 195 ################################################################################ | 195 ################################################################################ |
| 196 ], # targets | 196 ], # targets |
| 197 } | 197 } |
| OLD | NEW |