Lines Matching +full:pkg +full:- +full:config
2 # Use of this source code is governed by a BSD-style license that can be
5 import("//build/config/sysroot.gni")
7 # Defines a config specifying the result of running pkg-config for the given
12 # add this to the config to pass defines that the library expects to get by
21 # You can also use "extra args" to filter out results (see pkg-config.py):
22 # extra_args = [ "-v, "foo" ]
28 # A pkg-config wrapper to call instead of trying to find and call the right
29 # pkg-config directly. Wrappers like this are common in cross-compilation
31 # Leaving it blank defaults to searching PATH for 'pkg-config' and relying on
35 # A optional pkg-config wrapper to use for tools built on the host.
50 pkg_config_script = "//build/config/linux/pkg-config.py"
52 # Define the args we pass to the pkg-config script for other build files that
60 "-s",
62 "-a",
69 "-p",
77 "--system_libdir",
84 "-p",
94 config(target_name) {
109 # We want the system include paths to use -isystem instead of -I to
112 cflags += [ "-isystem$include_relativized" ]
114 cflags += [ "-I$include" ]