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

Unified Diff: build/linux/system.gyp

Issue 84005: fix linking on linux by explicitly adding gthread (Closed)
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index 46bf22ccdd53dc888f03beb39a7c13e3c8c17610..df40c92d7206ca88a82268c75669978e54071cff 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -106,5 +106,22 @@
],
},
},
+ {
+ 'target_name': 'gthread',
+ 'type': 'settings',
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(python pkg_config_wrapper.py --cflags gthread-2.0)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gthread-2.0)',
+ ],
+ 'libraries': [
+ '<!@(python pkg_config_wrapper.py --libs-only-l gthread-2.0)',
+ ],
+ },
+ },
],
}
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698