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

Unified Diff: build/linux/system.gyp

Issue 92056: Linux: add -lX11 as a library to WebKit. (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 | webkit/webkit.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 df40c92d7206ca88a82268c75669978e54071cff..8800cb62fde47b2fe8e884beaf5adcacab94675b 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -123,5 +123,22 @@
],
},
},
+ {
+ 'target_name': 'x11',
+ 'type': 'settings',
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(python pkg_config_wrapper.py --cflags x11)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other x11)',
+ ],
+ 'libraries': [
+ '<!@(python pkg_config_wrapper.py --libs-only-l x11)',
+ ],
+ },
+ },
],
}
« no previous file with comments | « no previous file | webkit/webkit.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698