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

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

Issue 217273004: Pull GN @ r262225 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « base/third_party/xdg_user_dirs/BUILD.gn ('k') | build/toolchain/nacl/BUILD.gn » ('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("//build/config/sysroot.gni") 5 import("//build/config/sysroot.gni")
6 6
7 # 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
8 # 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
9 # inside the template invocation. 9 # inside the template invocation.
10 # 10 #
(...skipping 21 matching lines...) Expand all
32 args, "value") 32 args, "value")
33 include_dirs = pkgresult[0] 33 include_dirs = pkgresult[0]
34 cflags = pkgresult[1] 34 cflags = pkgresult[1]
35 libs = pkgresult[2] 35 libs = pkgresult[2]
36 lib_dirs = pkgresult[3] 36 lib_dirs = pkgresult[3]
37 ldflags = pkgresult[4] 37 ldflags = pkgresult[4]
38 38
39 if (defined(invoker.defines)) { 39 if (defined(invoker.defines)) {
40 defines = invoker.defines 40 defines = invoker.defines
41 } 41 }
42 if (defined(invoker.visibility)) {
43 visibility = invoker.visibility
44 }
42 } 45 }
43 } 46 }
OLDNEW
« no previous file with comments | « base/third_party/xdg_user_dirs/BUILD.gn ('k') | build/toolchain/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698