diff options
author | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 00:17:21 +0000 |
---|---|---|
committer | davemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 00:17:21 +0000 |
commit | 344d0edac02c960d117c5ae97bd65cf02689013a (patch) | |
tree | 585d83463337fdb6bf1ebdd1ca483ee39a12d5d7 /build | |
parent | c1d28586adf85047f150cc033110ae8ce6e4834f (diff) | |
download | chromium_src-344d0edac02c960d117c5ae97bd65cf02689013a.zip chromium_src-344d0edac02c960d117c5ae97bd65cf02689013a.tar.gz chromium_src-344d0edac02c960d117c5ae97bd65cf02689013a.tar.bz2 |
Add a gyp target for Xext to linux/system so that Views can depend on it. A recent change added a code dependency within Views on linux on this library. Chrome was linking with it but other Views apps (candidate_window) weren't
Review URL: http://codereview.chromium.org/758002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41097 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/linux/system.gyp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index 62bbcbb..e6336f5 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': [ |