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

Side by Side Diff: build/linux/system.gyp

Issue 8501002: Use XFixes to update the clipboard sequence number. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/base/clipboard/clipboard_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['sysroot!=""', { 7 ['sysroot!=""', {
8 'variables': { 8 'variables': {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"',
10 }, 10 },
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', 321 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)',
322 ], 322 ],
323 'libraries': [ 323 'libraries': [
324 '<!@(<(pkg-config) --libs-only-l xext)', 324 '<!@(<(pkg-config) --libs-only-l xext)',
325 ], 325 ],
326 }, 326 },
327 }], 327 }],
328 ], 328 ],
329 }, 329 },
330 { 330 {
331 'target_name': 'xfixes',
332 'type': 'none',
333 'conditions': [
334 ['_toolset=="target"', {
335 'direct_dependent_settings': {
336 'cflags': [
337 '<!@(<(pkg-config) --cflags xfixes)',
338 ],
339 },
340 'link_settings': {
341 'ldflags': [
342 '<!@(<(pkg-config) --libs-only-L --libs-only-other xfixes)',
343 ],
344 'libraries': [
345 '<!@(<(pkg-config) --libs-only-l xfixes)',
346 ],
347 },
348 }],
349 ],
350 },
351 {
331 'target_name': 'libgcrypt', 352 'target_name': 'libgcrypt',
332 'type': 'none', 353 'type': 'none',
333 'conditions': [ 354 'conditions': [
334 ['_toolset=="target" and use_cups==1', { 355 ['_toolset=="target" and use_cups==1', {
335 'direct_dependent_settings': { 356 'direct_dependent_settings': {
336 'cflags': [ 357 'cflags': [
337 '<!@(libgcrypt-config --cflags)', 358 '<!@(libgcrypt-config --cflags)',
338 ], 359 ],
339 }, 360 },
340 'link_settings': { 361 'link_settings': {
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 ], 620 ],
600 'libraries': [ 621 'libraries': [
601 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)', 622 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)',
602 ], 623 ],
603 }, 624 },
604 }], 625 }],
605 ], 626 ],
606 }, 627 },
607 ], 628 ],
608 } 629 }
OLDNEW
« no previous file with comments | « no previous file | ui/base/clipboard/clipboard_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698