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

Side by Side Diff: build/config/linux/pkg_config.gni

Issue 116803003: Add support for sysroots to GN's pkg-config. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/config/linux/pkg-config.py ('k') | build/config/linux/sysroot_ld_path.py » ('j') | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import("sysroot.gni")
6
5 # Defines a config specifying the result of running pkg-config for the given 7 # Defines a config specifying the result of running pkg-config for the given
6 # packages. Put the package names you want to query in the "packages" variable 8 # packages. Put the package names you want to query in the "packages" variable
7 # inside the template invocation. 9 # inside the template invocation.
8 # 10 #
9 # You can also add defines via the "defines" variable. This can be useful to 11 # You can also add defines via the "defines" variable. This can be useful to
10 # add this to the config to pass defines that the library expects to get by 12 # add this to the config to pass defines that the library expects to get by
11 # users of its headers. 13 # users of its headers.
12 # 14 #
13 # Example: 15 # Example:
14 # pkg_config("mything") { 16 # pkg_config("mything") {
15 # packages = [ "mything1", "mything2" ] 17 # packages = [ "mything1", "mything2" ]
16 # defines = [ "ENABLE_AWESOME" ] 18 # defines = [ "ENABLE_AWESOME" ]
17 # } 19 # }
18 20
19 template("pkg_config") { 21 template("pkg_config") {
20 assert(defined(packages), 22 assert(defined(packages),
21 "Variable |packages| must be defined to be a list in pkg_config.") 23 "Variable |packages| must be defined to be a list in pkg_config.")
22 config(target_name) { 24 config(target_name) {
25 if (sysroot != "") {
26 # Pass the sysroot if we're using one (it requires the CPU arch also).
27 args = ["-s", sysroot, "-a", cpu_arch] + packages
28 } else {
29 args = packages
30 }
23 pkgresult = exec_script("//build/config/linux/pkg-config.py", 31 pkgresult = exec_script("//build/config/linux/pkg-config.py",
24 packages, "value") 32 args, "value")
25 include_dirs = pkgresult[0] 33 include_dirs = pkgresult[0]
26 cflags = pkgresult[1] 34 cflags = pkgresult[1]
27 libs = pkgresult[2] 35 libs = pkgresult[2]
28 lib_dirs = pkgresult[3] 36 lib_dirs = pkgresult[3]
29 } 37 }
30 } 38 }
OLDNEW
« no previous file with comments | « build/config/linux/pkg-config.py ('k') | build/config/linux/sysroot_ld_path.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698