| 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 core, used to generate bindings | 5 # Generate IDL interfaces info for core, 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 21 matching lines...) Expand all Loading... |
| 32 '<(core_static_idl_files_list)', | 32 '<(core_static_idl_files_list)', |
| 33 '<@(core_static_idl_files)', | 33 '<@(core_static_idl_files)', |
| 34 '<@(core_generated_idl_files)', | 34 '<@(core_generated_idl_files)', |
| 35 ], | 35 ], |
| 36 'outputs': [ | 36 'outputs': [ |
| 37 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 37 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', |
| 38 ], | 38 ], |
| 39 'action': [ | 39 'action': [ |
| 40 'python', | 40 'python', |
| 41 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', | 41 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', |
| 42 '--component-dir', |
| 43 'core', |
| 42 '--idl-files-list', | 44 '--idl-files-list', |
| 43 '<(core_static_idl_files_list)', | 45 '<(core_static_idl_files_list)', |
| 44 '--interfaces-info-file', | 46 '--interfaces-info-file', |
| 45 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 47 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', |
| 46 '--write-file-only-if-changed', | 48 '--write-file-only-if-changed', |
| 47 '<(write_file_only_if_changed)', | 49 '<(write_file_only_if_changed)', |
| 48 '--', | 50 '--', |
| 49 # Generated files must be passed at command line | 51 # Generated files must be passed at command line |
| 50 '<@(core_generated_idl_files)', | 52 '<@(core_generated_idl_files)', |
| 51 ], | 53 ], |
| 52 'message': 'Computing global information about individual IDL files', | 54 'message': 'Computing global information about individual IDL files', |
| 53 }] | 55 }] |
| 54 }, | 56 }, |
| 55 ################################################################################ | 57 ################################################################################ |
| 56 ], # targets | 58 ], # targets |
| 57 } | 59 } |
| OLD | NEW |