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': [ |
11 # ../../.. == Source | 11 # ../../.. == Source |
12 '../../../bindings/bindings.gypi', | 12 '../../../bindings/bindings.gypi', |
13 '../../../bindings/core/generated.gypi', | 13 '../../../bindings/core/generated.gypi', |
14 '../../../bindings/core/idl.gypi', | 14 '../../../bindings/core/idl.gypi', |
15 # FIXME: need info about modules IDL files because some core IDL files | 15 # FIXME: need info about modules IDL files because some core IDL files |
16 # depend on modules IDL files http://crbug.com/358074 | 16 # depend on modules IDL files http://crbug.com/358074 |
17 '../../../bindings/modules/generated.gypi', | |
17 '../../../bindings/modules/idl.gypi', | 18 '../../../bindings/modules/idl.gypi', |
18 '../../../bindings/modules/modules.gypi', | 19 '../../../bindings/modules/modules.gypi', |
19 '../../../bindings/scripts/scripts.gypi', | 20 '../../../bindings/scripts/scripts.gypi', |
20 '../../../core/core.gypi', | 21 '../../../core/core.gypi', |
21 'generated.gypi', | 22 'generated.gypi', |
22 ], | 23 ], |
23 | 24 |
24 'targets': [ | 25 'targets': [ |
25 ################################################################################ | 26 ################################################################################ |
26 { | 27 { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
102 'inputs': [ | 103 'inputs': [ |
103 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 104 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
104 '<(core_idl_files_list)', | 105 '<(core_idl_files_list)', |
105 ], | 106 ], |
106 'outputs': [ | 107 'outputs': [ |
107 '<@(bindings_core_v8_generated_aggregate_files)', | 108 '<@(bindings_core_v8_generated_aggregate_files)', |
108 ], | 109 ], |
109 'action': [ | 110 'action': [ |
110 'python', | 111 'python', |
111 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 112 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
113 '--component-dir', | |
haraken
2014/10/09 04:24:00
Do we have a plan to remove the --component-dir op
tasak
2014/10/10 07:52:22
Currently, no, because we have no information abou
| |
112 'core', | 114 'core', |
115 '--idl-files-list', | |
113 '<(core_idl_files_list)', | 116 '<(core_idl_files_list)', |
114 '--', | |
115 '<@(bindings_core_v8_generated_aggregate_files)', | 117 '<@(bindings_core_v8_generated_aggregate_files)', |
116 ], | 118 ], |
117 'message': 'Generating aggregate generated core V8 bindings files', | 119 'message': 'Generating aggregate generated core V8 bindings files', |
118 }], | 120 }], |
119 }, | 121 }, |
120 ################################################################################ | 122 ################################################################################ |
121 { | 123 { |
122 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_dic tionary_impl_generated | 124 # GN version: //third_party/WebKit/Source/bindings/core/v8:bindings_core_dic tionary_impl_generated |
123 # http://crbug.com/358074; See comments on | 125 # http://crbug.com/358074; See comments on |
124 # 'bindings_core_v8_generated_individual' target | 126 # 'bindings_core_v8_generated_individual' target |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
176 'type': 'none', | 178 'type': 'none', |
177 'dependencies': [ | 179 'dependencies': [ |
178 'bindings_core_dictionary_impl_generated', | 180 'bindings_core_dictionary_impl_generated', |
179 'bindings_core_v8_generated_aggregate', | 181 'bindings_core_v8_generated_aggregate', |
180 'bindings_core_v8_generated_individual', | 182 'bindings_core_v8_generated_individual', |
181 ], | 183 ], |
182 }, | 184 }, |
183 ################################################################################ | 185 ################################################################################ |
184 ], # targets | 186 ], # targets |
185 } | 187 } |
OLD | NEW |