Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / scripts / interfaces_info_individual.gypi
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 #  output_file - Pickle file containing output.
29 #
30 # Design document: http://www.chromium.org/developers/design-documents/idl-build
31
32 {
33   'type': 'none',
34   'actions': [{
35     'action_name': 'compute_<(_target_name)',
36     'message': 'Computing global information about individual IDL files for <(_target_name)',
37     'variables': {
38       'static_idl_files_list':
39         '<|(<(_target_name)_static_idl_files_list.tmp <@(static_idl_files))',
40     },
41     'inputs': [
42       '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
43       '<(bindings_scripts_dir)/utilities.py',
44       '<(static_idl_files_list)',
45       '<@(static_idl_files)',
46       '<@(generated_idl_files)',
47     ],
48     'outputs': [
49       '<(output_file)',
50     ],
51
52     'action': [
53       'python',
54       '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
55       '--idl-files-list',
56       '<(static_idl_files_list)',
57       '--interfaces-info-file',
58       '<(output_file)',
59       '--write-file-only-if-changed',
60       '<(write_file_only_if_changed)',
61       '--',
62       # Generated files must be passed at command line
63       '<@(generated_idl_files)',
64     ],
65   }],
66 }