| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 ], | 775 ], |
| 776 }, | 776 }, |
| 777 { | 777 { |
| 778 'target_name': 'pangocairo', | 778 'target_name': 'pangocairo', |
| 779 'type': 'none', | 779 'type': 'none', |
| 780 'toolsets': ['host', 'target'], | 780 'toolsets': ['host', 'target'], |
| 781 'conditions': [ | 781 'conditions': [ |
| 782 ['_toolset=="target"', { | 782 ['_toolset=="target"', { |
| 783 'direct_dependent_settings': { | 783 'direct_dependent_settings': { |
| 784 'cflags': [ | 784 'cflags': [ |
| 785 '<!@(<(pkg-config) --cflags pangocairo pangoft2)', | 785 '<!@(<(pkg-config) --cflags pangocairo)', |
| 786 ], | 786 ], |
| 787 }, | 787 }, |
| 788 'link_settings': { | 788 'link_settings': { |
| 789 'ldflags': [ | 789 'ldflags': [ |
| 790 '<!@(<(pkg-config) --libs-only-L --libs-only-other pangocairo pang
oft2)', | 790 '<!@(<(pkg-config) --libs-only-L --libs-only-other pangocairo)', |
| 791 ], | 791 ], |
| 792 'libraries': [ | 792 'libraries': [ |
| 793 '<!@(<(pkg-config) --libs-only-l pangocairo pangoft2)', | 793 '<!@(<(pkg-config) --libs-only-l pangocairo)', |
| 794 ], | 794 ], |
| 795 }, | 795 }, |
| 796 }, { | 796 }, { |
| 797 'direct_dependent_settings': { | 797 'direct_dependent_settings': { |
| 798 'cflags': [ | 798 'cflags': [ |
| 799 '<!@(pkg-config --cflags pangocairo pangoft2)', | 799 '<!@(pkg-config --cflags pangocairo)', |
| 800 ], | 800 ], |
| 801 }, | 801 }, |
| 802 'link_settings': { | 802 'link_settings': { |
| 803 'ldflags': [ | 803 'ldflags': [ |
| 804 '<!@(pkg-config --libs-only-L --libs-only-other pangocairo pangoft
2)', | 804 '<!@(pkg-config --libs-only-L --libs-only-other pangocairo)', |
| 805 ], | 805 ], |
| 806 'libraries': [ | 806 'libraries': [ |
| 807 '<!@(pkg-config --libs-only-l pangocairo pangoft2)', | 807 '<!@(pkg-config --libs-only-l pangocairo)', |
| 808 ], | 808 ], |
| 809 }, | 809 }, |
| 810 }], | 810 }], |
| 811 ], | 811 ], |
| 812 }, | 812 }, |
| 813 { | 813 { |
| 814 'target_name': 'libresolv', | 814 'target_name': 'libresolv', |
| 815 'type': 'none', | 815 'type': 'none', |
| 816 'link_settings': { | 816 'link_settings': { |
| 817 'libraries': [ | 817 'libraries': [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 836 ], | 836 ], |
| 837 'libraries': [ | 837 'libraries': [ |
| 838 '<!@(<(pkg-config) --libs-only-l libudev)', | 838 '<!@(<(pkg-config) --libs-only-l libudev)', |
| 839 ], | 839 ], |
| 840 }, | 840 }, |
| 841 }], | 841 }], |
| 842 ], | 842 ], |
| 843 }, | 843 }, |
| 844 ], | 844 ], |
| 845 } | 845 } |
| OLD | NEW |