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

Unified Diff: build/linux/system.gyp

Issue 56188: Separate the pkg-config --libs output into --libs-only-l for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
===================================================================
--- build/linux/system.gyp (revision 13055)
+++ build/linux/system.gyp (working copy)
@@ -13,8 +13,11 @@
],
},
'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gtk+-2.0)',
+ ],
'libraries': [
- '<!@(python pkg_config_wrapper.py --libs gtk+-2.0)',
+ '<!@(python pkg_config_wrapper.py --libs-only-l gtk+-2.0)',
],
},
},
@@ -27,8 +30,11 @@
],
},
'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other nss)',
+ ],
'libraries': [
- '<!@(python pkg_config_wrapper.py --libs nss)',
+ '<!@(python pkg_config_wrapper.py --libs-only-l nss)',
],
},
},
@@ -41,8 +47,11 @@
],
},
'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other freetype2)',
+ ],
'libraries': [
- '<!@(python pkg_config_wrapper.py --libs freetype2)',
+ '<!@(python pkg_config_wrapper.py --libs-only-l freetype2)',
],
},
},
@@ -55,8 +64,11 @@
],
},
'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other fontconfig)',
+ ],
'libraries': [
- '<!@(python pkg_config_wrapper.py --libs fontconfig)',
+ '<!@(python pkg_config_wrapper.py --libs-only-l fontconfig)',
],
},
},
@@ -69,8 +81,11 @@
],
},
'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk-2.0)',
+ ],
'libraries': [
- '<!@(python pkg_config_wrapper.py --libs gdk-2.0)',
+ '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)',
],
},
},
« 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