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 # This file is meant to be included into a target to provide an action | |
6 # to compute information about individual interfaces defined in a component. | |
7 # | |
8 # To use this, create a gyp target with the following form: | |
9 # { | |
10 # 'target_name': 'interfaces_info_individual_component', | |
11 # 'dependencies': [ | |
12 # 'generated_idls_target', | |
13 # ], | |
14 # 'variables': { | |
15 # 'static_idl_files': '<(component_static_idl_files)', | |
16 # 'generated_idl_files': '<(component_generated_idl_files)', | |
17 # 'output_file': | |
18 # '<(bindings_core_output_dir)/InterfacesInfoComponentIndividual.pickle', | |
19 # }, | |
20 # 'includes': ['path/to/this/gypi/file'], | |
21 # }, | |
22 # | |
23 # Required variables: | |
24 # static_idl_files - All static .idl files for the component, including | |
25 # dependencies and testing. | |
26 # generated_idl_files - All generated .idl files for the component. | |
27 # (Must be separate from static because build dir not know at gyp time.) | |
28 # interfaces_info_file - Output pickle file containing interfaces info. | |
29 # component_info_file - Output pickle file containing component-wide info. | |
30 # | |
31 # Design document: http://www.chromium.org/developers/design-documents/idl-build | |
32 | |
33 { | |
34 'type': 'none', | |
35 'actions': [{ | |
36 'action_name': 'compute_<(_target_name)', | |
37 'message': 'Computing global information about individual IDL files for <(_t
arget_name)', | |
38 'variables': { | |
39 'static_idl_files_list': | |
40 '<|(<(_target_name)_static_idl_files_list.tmp <@(static_idl_files))', | |
41 }, | |
42 'inputs': [ | |
43 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', | |
44 '<(bindings_scripts_dir)/utilities.py', | |
45 '<(static_idl_files_list)', | |
46 '<@(static_idl_files)', | |
47 '<@(generated_idl_files)', | |
48 ], | |
49 'outputs': [ | |
50 '<(interfaces_info_file)', | |
51 '<(component_info_file)', | |
52 ], | |
53 | |
54 'action': [ | |
55 'python', | |
56 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', | |
57 '--cache-directory', | |
58 '<(cache_directory)', | |
59 '--idl-files-list', | |
60 '<(static_idl_files_list)', | |
61 '--interfaces-info-file', | |
62 '<(interfaces_info_file)', | |
63 '--component-info-file', | |
64 '<(component_info_file)', | |
65 '--write-file-only-if-changed', | |
66 '<(write_file_only_if_changed)', | |
67 '--', | |
68 # Generated files must be passed at command line | |
69 '<@(generated_idl_files)', | |
70 ], | |
71 }], | |
72 } | |
OLD | NEW |