OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # Generate IDL bindings, together with auxiliary files |
| 6 # (constructors on global objects, aggregate bindings files). |
| 7 # |
| 8 # Design doc: http://www.chromium.org/developers/design-documents/idl-build |
| 9 |
| 10 { |
| 11 'includes': [ |
| 12 '../../bindings.gypi', |
| 13 '../../idl.gypi', |
| 14 'generated.gypi', |
| 15 ], |
| 16 ################################################################################ |
| 17 'targets': [ |
| 18 ################################################################################ |
| 19 { |
| 20 'target_name': 'bindings_core_generated_aggregate', |
| 21 'type': 'none', |
| 22 'actions': [{ |
| 23 'action_name': 'generate_aggregate_bindings_core', |
| 24 'inputs': [ |
| 25 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 26 '<(core_idl_files_list)', |
| 27 ], |
| 28 'outputs': [ |
| 29 '<@(bindings_core_generated_aggregate_files)', |
| 30 ], |
| 31 'action': [ |
| 32 'python', |
| 33 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 34 '<(core_idl_files_list)', |
| 35 '--', |
| 36 '<@(bindings_core_generated_aggregate_files)', |
| 37 ], |
| 38 'message': 'Generating aggregate generated core bindings files', |
| 39 }], |
| 40 }, |
| 41 ################################################################################ |
| 42 { |
| 43 'target_name': 'bindings_core_generated', |
| 44 'type': 'none', |
| 45 'dependencies': [ |
| 46 'bindings_core_generated_aggregate', |
| 47 # FIXME: move individual bindings here http://crbug.com/358074 |
| 48 # 'bindings_core_generated_individual', |
| 49 ], |
| 50 }, |
| 51 ################################################################################ |
| 52 ], # targets |
| 53 } |
OLD | NEW |