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

Unified Diff: build/linux/system.gyp

Issue 758002: Make views depend on Xext (Closed)
Patch Set: Had merge collisions Created 10 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 | « no previous file | views/views.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 62bbcbb1e3a374e6bb2f2abee171552551acdce2..e6336f595af1fe67c34ee8d5b6b20d6e9a1f430c 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -223,6 +223,26 @@
}]]
},
{
+ 'target_name': 'xext',
+ 'type': 'settings',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags xext)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l xext)',
+ ],
+ },
+ }]]
+ },
+ {
'target_name': 'selinux',
'type': 'settings',
'conditions': [
« no previous file with comments | « no previous file | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698