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

Unified Diff: build/config/linux/BUILD.gn

Issue 1536423003: gn: Pass pkg_config_args when invoking pkg_config_script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/accessibility/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/linux/BUILD.gn
diff --git a/build/config/linux/BUILD.gn b/build/config/linux/BUILD.gn
index a19b8f1b0bfc53a2caee63962ff061a1272f1a3c..1b3d9f9c867de3f07eff9744cbacf66dfa43af47 100644
--- a/build/config/linux/BUILD.gn
+++ b/build/config/linux/BUILD.gn
@@ -123,10 +123,10 @@ if (!is_chromeos && use_gconf) {
pkg_config("atk") {
packages = [ "atk" ]
atk_lib_dir = exec_script(pkg_config_script,
- [
- "--libdir",
- "atk",
- ],
+ pkg_config_args + [
+ "--libdir",
+ "atk",
+ ],
"string")
defines = [ "ATK_LIB_DIR=\"$atk_lib_dir\"" ]
}
« no previous file with comments | « no previous file | ui/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698