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

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

Issue 8524014: Revert 109528 - 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 {
352 'target_name': 'libgcrypt', 331 'target_name': 'libgcrypt',
353 'type': 'none', 332 'type': 'none',
354 'conditions': [ 333 'conditions': [
355 ['_toolset=="target" and use_cups==1', { 334 ['_toolset=="target" and use_cups==1', {
356 'direct_dependent_settings': { 335 'direct_dependent_settings': {
357 'cflags': [ 336 'cflags': [
358 '<!@(libgcrypt-config --cflags)', 337 '<!@(libgcrypt-config --cflags)',
359 ], 338 ],
360 }, 339 },
361 'link_settings': { 340 'link_settings': {
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 ], 599 ],
621 'libraries': [ 600 'libraries': [
622 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)', 601 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)',
623 ], 602 ],
624 }, 603 },
625 }], 604 }],
626 ], 605 ],
627 }, 606 },
628 ], 607 ],
629 } 608 }
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