| 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 modules, plus aggregate bindings files. | 5 # Generate IDL bindings for modules, 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 }, | 88 }, |
| 89 ################################################################################ | 89 ################################################################################ |
| 90 { | 90 { |
| 91 'target_name': 'bindings_modules_v8_generated_aggregate', | 91 'target_name': 'bindings_modules_v8_generated_aggregate', |
| 92 'type': 'none', | 92 'type': 'none', |
| 93 'actions': [{ | 93 'actions': [{ |
| 94 'action_name': 'generate_aggregate_bindings_modules_v8', | 94 'action_name': 'generate_aggregate_bindings_modules_v8', |
| 95 'inputs': [ | 95 'inputs': [ |
| 96 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 96 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 97 '<(modules_idl_files_list)', | 97 '<(modules_idl_files_list)', |
| 98 '<@(modules_interface_idl_files)', |
| 98 ], | 99 ], |
| 99 'outputs': [ | 100 'outputs': [ |
| 100 '<@(bindings_modules_v8_generated_aggregate_files)', | 101 '<@(bindings_modules_v8_generated_aggregate_files)', |
| 101 ], | 102 ], |
| 102 'action': [ | 103 'action': [ |
| 103 'python', | 104 'python', |
| 104 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', | 105 '<(bindings_scripts_dir)/aggregate_generated_bindings.py', |
| 105 'modules', | 106 'modules', |
| 106 '<(modules_idl_files_list)', | 107 '<(modules_idl_files_list)', |
| 107 '--', | 108 '--', |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 'bindings_modules_v8_generated_aggregate', | 298 'bindings_modules_v8_generated_aggregate', |
| 298 'bindings_modules_v8_generated_individual', | 299 'bindings_modules_v8_generated_individual', |
| 299 'bindings_modules_v8_generated_init_partial', | 300 'bindings_modules_v8_generated_init_partial', |
| 300 'bindings_modules_v8_generated_partial_aggregate', | 301 'bindings_modules_v8_generated_partial_aggregate', |
| 301 'bindings_modules_v8_generated_partial_individual', | 302 'bindings_modules_v8_generated_partial_individual', |
| 302 ], | 303 ], |
| 303 }, | 304 }, |
| 304 ################################################################################ | 305 ################################################################################ |
| 305 ], # targets | 306 ], # targets |
| 306 } | 307 } |
| OLD | NEW |