summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 23:01:51 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 23:01:51 +0000
commit1a828911013ff501b87aacc5b555e470b31f2909 (patch)
tree61b673c1b861d7e664f6e5908d8b0981a6831eb1 /build
parent3ce52b7367e007940d7ab34ae8eae1df236c59df (diff)
downloadchromium_src-1a828911013ff501b87aacc5b555e470b31f2909.zip
chromium_src-1a828911013ff501b87aacc5b555e470b31f2909.tar.gz
chromium_src-1a828911013ff501b87aacc5b555e470b31f2909.tar.bz2
Use XFixes to update the clipboard sequence number.
BUG=73478 TEST=manual testing Review URL: http://codereview.chromium.org/8501002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109528 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/linux/system.gyp21
1 files changed, 21 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index 77c7de1..a2b57cc 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -328,6 +328,27 @@
],
},
{
+ 'target_name': 'xfixes',
+ 'type': 'none',
+ 'conditions': [
+ ['_toolset=="target"', {
+ 'direct_dependent_settings': {
+ 'cflags': [
+ '<!@(<(pkg-config) --cflags xfixes)',
+ ],
+ },
+ 'link_settings': {
+ 'ldflags': [
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other xfixes)',
+ ],
+ 'libraries': [
+ '<!@(<(pkg-config) --libs-only-l xfixes)',
+ ],
+ },
+ }],
+ ],
+ },
+ {
'target_name': 'libgcrypt',
'type': 'none',
'conditions': [