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', | |
bashi
2014/10/15 05:29:22
Remove?
tasak
2014/10/15 11:24:18
Done.
| |
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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
176 'type': 'none', | 177 'type': 'none', |
177 'dependencies': [ | 178 'dependencies': [ |
178 'bindings_core_dictionary_impl_generated', | 179 'bindings_core_dictionary_impl_generated', |
179 'bindings_core_v8_generated_aggregate', | 180 'bindings_core_v8_generated_aggregate', |
180 'bindings_core_v8_generated_individual', | 181 'bindings_core_v8_generated_individual', |
181 ], | 182 ], |
182 }, | 183 }, |
183 ################################################################################ | 184 ################################################################################ |
184 ], # targets | 185 ], # targets |
185 } | 186 } |
OLD | NEW |