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

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

Issue 24365012: Revert 225054 "linux_aura: Implement most of DesktopScreenX11." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 2 months 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 '<!@(<(pkg-config) --libs-only-L --libs-only-other xfixes)', 674 '<!@(<(pkg-config) --libs-only-L --libs-only-other xfixes)',
675 ], 675 ],
676 'libraries': [ 676 'libraries': [
677 '<!@(<(pkg-config) --libs-only-l xfixes)', 677 '<!@(<(pkg-config) --libs-only-l xfixes)',
678 ], 678 ],
679 }, 679 },
680 }], 680 }],
681 ], 681 ],
682 }, 682 },
683 { 683 {
684 'target_name': 'xrandr',
685 'type': 'none',
686 'conditions': [
687 ['_toolset=="target"', {
688 'direct_dependent_settings': {
689 'cflags': [
690 '<!@(<(pkg-config) --cflags xrandr)',
691 ],
692 },
693 'link_settings': {
694 'ldflags': [
695 '<!@(<(pkg-config) --libs-only-L --libs-only-other xrandr)',
696 ],
697 'libraries': [
698 '<!@(<(pkg-config) --libs-only-l xrandr)',
699 ],
700 },
701 }],
702 ],
703 },
704 {
705 'target_name': 'libgcrypt', 684 'target_name': 'libgcrypt',
706 'type': 'none', 685 'type': 'none',
707 'conditions': [ 686 'conditions': [
708 ['_toolset=="target" and use_cups==1', { 687 ['_toolset=="target" and use_cups==1', {
709 'direct_dependent_settings': { 688 'direct_dependent_settings': {
710 'cflags': [ 689 'cflags': [
711 '<!@(libgcrypt-config --cflags)', 690 '<!@(libgcrypt-config --cflags)',
712 ], 691 ],
713 }, 692 },
714 'link_settings': { 693 'link_settings': {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 ], 897 ],
919 'libraries': [ 898 'libraries': [
920 '<!@(<(pkg-config) --libs-only-l libudev)', 899 '<!@(<(pkg-config) --libs-only-l libudev)',
921 ], 900 ],
922 }, 901 },
923 }], 902 }],
924 ], 903 ],
925 }, 904 },
926 ], 905 ],
927 } 906 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698