OLD | NEW |
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 Loading... |
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 'toolsets': ['host', 'target'], |
| 687 'conditions': [ |
| 688 ['_toolset=="target"', { |
| 689 'direct_dependent_settings': { |
| 690 'cflags': [ |
| 691 '<!@(<(pkg-config) --cflags xrandr)', |
| 692 ], |
| 693 }, |
| 694 'link_settings': { |
| 695 'ldflags': [ |
| 696 '<!@(<(pkg-config) --libs-only-L --libs-only-other xrandr)', |
| 697 ], |
| 698 'libraries': [ |
| 699 '<!@(<(pkg-config) --libs-only-l xrandr)', |
| 700 ], |
| 701 }, |
| 702 }, { |
| 703 'direct_dependent_settings': { |
| 704 'cflags': [ |
| 705 '<!@(pkg-config --cflags xrandr)', |
| 706 ], |
| 707 }, |
| 708 'link_settings': { |
| 709 'ldflags': [ |
| 710 '<!@(pkg-config --libs-only-L --libs-only-other xrandr)', |
| 711 ], |
| 712 'libraries': [ |
| 713 '<!@(pkg-config --libs-only-l xrandr)', |
| 714 ], |
| 715 }, |
| 716 }], |
| 717 ], |
| 718 }, |
| 719 { |
684 'target_name': 'libgcrypt', | 720 'target_name': 'libgcrypt', |
685 'type': 'none', | 721 'type': 'none', |
686 'conditions': [ | 722 'conditions': [ |
687 ['_toolset=="target" and use_cups==1', { | 723 ['_toolset=="target" and use_cups==1', { |
688 'direct_dependent_settings': { | 724 'direct_dependent_settings': { |
689 'cflags': [ | 725 'cflags': [ |
690 '<!@(libgcrypt-config --cflags)', | 726 '<!@(libgcrypt-config --cflags)', |
691 ], | 727 ], |
692 }, | 728 }, |
693 'link_settings': { | 729 'link_settings': { |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 ], | 933 ], |
898 'libraries': [ | 934 'libraries': [ |
899 '<!@(<(pkg-config) --libs-only-l libudev)', | 935 '<!@(<(pkg-config) --libs-only-l libudev)', |
900 ], | 936 ], |
901 }, | 937 }, |
902 }], | 938 }], |
903 ], | 939 ], |
904 }, | 940 }, |
905 ], | 941 ], |
906 } | 942 } |
OLD | NEW |