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

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

Issue 23536057: linux_aura: Implement most of DesktopScreenX11. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attempt at fixing chromeos compile. 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 {
684 'target_name': 'libgcrypt', 705 'target_name': 'libgcrypt',
685 'type': 'none', 706 'type': 'none',
686 'conditions': [ 707 'conditions': [
687 ['_toolset=="target" and use_cups==1', { 708 ['_toolset=="target" and use_cups==1', {
688 'direct_dependent_settings': { 709 'direct_dependent_settings': {
689 'cflags': [ 710 'cflags': [
690 '<!@(libgcrypt-config --cflags)', 711 '<!@(libgcrypt-config --cflags)',
691 ], 712 ],
692 }, 713 },
693 'link_settings': { 714 'link_settings': {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 ], 918 ],
898 'libraries': [ 919 'libraries': [
899 '<!@(<(pkg-config) --libs-only-l libudev)', 920 '<!@(<(pkg-config) --libs-only-l libudev)',
900 ], 921 ],
901 }, 922 },
902 }], 923 }],
903 ], 924 ],
904 }, 925 },
905 ], 926 ],
906 } 927 }
OLDNEW
« no previous file with comments | « base/x11/edid_parser_x11_unittest.cc ('k') | chrome/browser/ui/aura/chrome_browser_main_extra_parts_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698