Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Side by Side Diff: build/shim_headers.gypi

Issue 11685002: Linux: add option to use system nspr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 )', 13 'shim_headers_path': '<(SHARED_INTERMEDIATE_DIR)/shim_headers/<(_target_name )/<(_toolset)',
14 }, 14 },
15 'include_dirs+++': [ 15 'include_dirs+++': [
16 '<(shim_headers_path)', 16 '<(shim_headers_path)',
17 ], 17 ],
18 'direct_dependent_settings': { 18 'direct_dependent_settings': {
19 'include_dirs++++': [ 19 'include_dirs++++': [
20 '<(shim_headers_path)', 20 '<(shim_headers_path)',
21 ], 21 ],
22 }, 22 },
23 'actions': [ 23 'actions': [
(...skipping 15 matching lines...) Expand all
39 ], 39 ],
40 'action': ['python', 40 'action': ['python',
41 '<(generator_path)', 41 '<(generator_path)',
42 '<@(generator_args)', 42 '<@(generator_args)',
43 '--generate', 43 '--generate',
44 ], 44 ],
45 'message': 'Generating <(_target_name) shim headers.', 45 'message': 'Generating <(_target_name) shim headers.',
46 }, 46 },
47 ], 47 ],
48 } 48 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698