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
3 # found in the LICENSE file.
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
8 # headers_root_path: string: path to directory containing headers
9 # header_filenames: list: list of header file names
13 'shim_headers_path': '<(SHARED_INTERMEDIATE_DIR)/shim_headers/<(_target_name)/<(_toolset)',
14 'shim_generator_additional_args%': [],
17 '<(shim_headers_path)',
19 'all_dependent_settings': {
20 # Repeating this with different numbers of plusses is unfortunately required
21 # to make sure that even if this include is inside nested conditions/etc, it
22 # still gets inserted at the beginning of the include_dirs list. See
23 # http://crbug.com/263818 for details.
25 '<(shim_headers_path)',
28 '<(shim_headers_path)',
30 'include_dirs+++++': [
31 '<(shim_headers_path)',
37 'generator_path': '<(DEPTH)/tools/generate_shim_headers/generate_shim_headers.py',
39 '--headers-root', '<(headers_root_path)',
40 '--output-directory', '<(shim_headers_path)',
41 '<@(shim_generator_additional_args)',
42 '<@(header_filenames)',
45 'action_name': 'generate_<(_target_name)_shim_headers',
50 '<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)',
57 'message': 'Generating <(_target_name) shim headers',