diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 23:29:11 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 23:29:11 +0000 |
commit | 34720ea2dcccd88e0f3054ab567a15cea06f97f4 (patch) | |
tree | da158cfc4107ac716d1fb27a00e106de0f7871ef /build/linux | |
parent | 9c687adb3ea03390d17c5f70468e17cfc685c911 (diff) | |
download | chromium_src-34720ea2dcccd88e0f3054ab567a15cea06f97f4.zip chromium_src-34720ea2dcccd88e0f3054ab567a15cea06f97f4.tar.gz chromium_src-34720ea2dcccd88e0f3054ab567a15cea06f97f4.tar.bz2 |
Reland with a virtual destructor.
Use XFixes to update the clipboard sequence number.
BUG=73478
TEST=manual testing
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=109528
Review URL: http://codereview.chromium.org/8501002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109537 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux')
-rw-r--r-- | build/linux/system.gyp | 21 |
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': [ |