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': '<(INTERMEDIATE_DIR)/shim_headers', | 13 'shim_headers_path': '<(SHARED_INTERMEDIATE_DIR)/shim_headers/<(_target_name )', |
14 }, | 14 }, |
15 'direct_dependent_settings': { | 15 'direct_dependent_settings': { |
16 'include_dirs+': [ | 16 'include_dirs+': [ |
Mark Mentovai
2012/12/18 19:48:17
You probably need one more plus here to have the e
Mark Mentovai
2012/12/18 19:48:17
Perhaps you’d also like to add 'include_dirs+' out
Paweł Hajdan Jr.
2012/12/18 20:57:41
Done.
Paweł Hajdan Jr.
2012/12/18 20:57:41
Done.
| |
17 '<(shim_headers_path)', | 17 '<(shim_headers_path)', |
18 ], | 18 ], |
19 }, | 19 }, |
20 'actions': [ | 20 'actions': [ |
21 { | 21 { |
22 'variables': { | 22 'variables': { |
23 'generator_path': '<(DEPTH)/tools/generate_shim_headers/generate_shim_he aders.py', | 23 'generator_path': '<(DEPTH)/tools/generate_shim_headers/generate_shim_he aders.py', |
24 'generator_args': [ | 24 'generator_args': [ |
25 '--headers-root', '<(headers_root_path)', | 25 '--headers-root', '<(headers_root_path)', |
26 '--output-directory', '<(shim_headers_path)', | 26 '--output-directory', '<(shim_headers_path)', |
27 '<@(header_filenames)', | 27 '<@(header_filenames)', |
28 ], | 28 ], |
29 }, | 29 }, |
30 'action_name': 'generate_<(_target_name)_shim_headers', | 30 'action_name': 'generate_<(_target_name)_shim_headers', |
31 'inputs': [ | 31 'inputs': [ |
32 '<(generator_path)', | 32 '<(generator_path)', |
33 ], | 33 ], |
34 'outputs': [ | 34 'outputs': [ |
35 '<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)', | 35 '<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)', |
36 ], | 36 ], |
37 'action': ['python', | 37 'action': ['python', |
38 '<(generator_path)', | 38 '<(generator_path)', |
39 '<@(generator_args)', | 39 '<@(generator_args)', |
40 '--generate', | 40 '--generate', |
41 ], | 41 ], |
42 'message': 'Generating <(_target_name) shim headers.', | 42 'message': 'Generating <(_target_name) shim headers.', |
43 }, | 43 }, |
44 ], | 44 ], |
45 } | 45 } |
OLD | NEW |