OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # This file is meant to be included into a target to handle shim headers | 5 # This file is meant to be included into a target to handle shim headers |
6 # in a consistent manner. To use this the following variables need to be | 6 # in a consistent manner. To use this the following variables need to be |
7 # defined: | 7 # defined: |
8 # headers_root_path: string: path to directory containing headers | 8 # headers_root_path: string: path to directory containing headers |
9 # header_filenames: list: list of header file names | 9 # header_filenames: list: list of header file names |
10 | 10 |
11 { | 11 { |
12 'variables': { | 12 'variables': { |
13 'shim_headers_path': '<(SHARED_INTERMEDIATE_DIR)/shim_headers/<(_target_name
)/<(_toolset)', | 13 'shim_headers_path': '<(SHARED_INTERMEDIATE_DIR)/shim_headers/<(_target_name
)/<(_toolset)', |
14 'shim_generator_additional_args%': [], | 14 'shim_generator_additional_args%': [], |
15 }, | 15 }, |
16 'include_dirs++': [ | 16 'include_dirs++': [ |
17 '<(shim_headers_path)', | 17 '<(shim_headers_path)', |
18 ], | 18 ], |
19 'all_dependent_settings': { | 19 'all_dependent_settings': { |
20 'include_dirs+++': [ | 20 'include_dirs+++': [ |
21 '<(shim_headers_path)', | 21 '<(shim_headers_path)', |
22 ], | 22 ], |
| 23 'include_dirs++++': [ |
| 24 '<(shim_headers_path)', |
| 25 ], |
23 }, | 26 }, |
24 'actions': [ | 27 'actions': [ |
25 { | 28 { |
26 'variables': { | 29 'variables': { |
27 'generator_path': '<(DEPTH)/tools/generate_shim_headers/generate_shim_he
aders.py', | 30 'generator_path': '<(DEPTH)/tools/generate_shim_headers/generate_shim_he
aders.py', |
28 'generator_args': [ | 31 'generator_args': [ |
29 '--headers-root', '<(headers_root_path)', | 32 '--headers-root', '<(headers_root_path)', |
30 '--output-directory', '<(shim_headers_path)', | 33 '--output-directory', '<(shim_headers_path)', |
31 '<@(shim_generator_additional_args)', | 34 '<@(shim_generator_additional_args)', |
32 '<@(header_filenames)', | 35 '<@(header_filenames)', |
33 ], | 36 ], |
34 }, | 37 }, |
35 'action_name': 'generate_<(_target_name)_shim_headers', | 38 'action_name': 'generate_<(_target_name)_shim_headers', |
36 'inputs': [ | 39 'inputs': [ |
37 '<(generator_path)', | 40 '<(generator_path)', |
38 ], | 41 ], |
39 'outputs': [ | 42 'outputs': [ |
40 '<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)', | 43 '<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)', |
41 ], | 44 ], |
42 'action': ['python', | 45 'action': ['python', |
43 '<(generator_path)', | 46 '<(generator_path)', |
44 '<@(generator_args)', | 47 '<@(generator_args)', |
45 '--generate', | 48 '--generate', |
46 ], | 49 ], |
47 'message': 'Generating <(_target_name) shim headers.', | 50 'message': 'Generating <(_target_name) shim headers.', |
48 }, | 51 }, |
49 ], | 52 ], |
50 } | 53 } |
OLD | NEW |