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 interfaces info for modules, used to generate bindings | 5 # Generate IDL interfaces info for modules, used to generate bindings |
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 23 matching lines...) Expand all Loading... |
34 '<@(modules_static_idl_files)', | 34 '<@(modules_static_idl_files)', |
35 # No generated files currently, will add with constructors | 35 # No generated files currently, will add with constructors |
36 # '<@(modules_generated_idl_files)', | 36 # '<@(modules_generated_idl_files)', |
37 ], | 37 ], |
38 'outputs': [ | 38 'outputs': [ |
39 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', | 39 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', |
40 ], | 40 ], |
41 'action': [ | 41 'action': [ |
42 'python', | 42 'python', |
43 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', | 43 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', |
| 44 '--component-dir', |
| 45 'modules', |
44 '--idl-files-list', | 46 '--idl-files-list', |
45 '<(modules_static_idl_files_list)', | 47 '<(modules_static_idl_files_list)', |
46 '--interfaces-info-file', | 48 '--interfaces-info-file', |
47 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', | 49 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', |
48 '--write-file-only-if-changed', | 50 '--write-file-only-if-changed', |
49 '<(write_file_only_if_changed)', | 51 '<(write_file_only_if_changed)', |
50 # No generated files currently, will add with constructors | 52 # No generated files currently, will add with constructors |
51 # '--', | 53 # '--', |
52 # Generated files must be passed at command line | 54 # Generated files must be passed at command line |
53 # '<@(modules_generated_idl_files)', | 55 # '<@(modules_generated_idl_files)', |
(...skipping 28 matching lines...) Expand all Loading... |
82 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 84 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', |
83 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', | 85 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', |
84 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', | 86 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', |
85 ], | 87 ], |
86 'message': 'Computing overall global information about IDL files', | 88 'message': 'Computing overall global information about IDL files', |
87 }] | 89 }] |
88 }, | 90 }, |
89 ################################################################################ | 91 ################################################################################ |
90 ], # targets | 92 ], # targets |
91 } | 93 } |
OLD | NEW |