| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['sysroot!=""', { | 7 ['sysroot!=""', { |
| 8 'variables': { | 8 'variables': { |
| 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', | 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', |
| 10 }, | 10 }, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 '<!@(<(pkg-config) --libs-only-L --libs-only-other gtk+-unix-print
-2.0)', | 84 '<!@(<(pkg-config) --libs-only-L --libs-only-other gtk+-unix-print
-2.0)', |
| 85 ], | 85 ], |
| 86 'libraries': [ | 86 'libraries': [ |
| 87 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)', | 87 '<!@(<(pkg-config) --libs-only-l gtk+-unix-print-2.0)', |
| 88 ], | 88 ], |
| 89 }, | 89 }, |
| 90 }], | 90 }], |
| 91 ], | 91 ], |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 'target_name': 'frame', |
| 95 'type': 'none', |
| 96 'conditions': [ |
| 97 ['_toolset=="target"', { |
| 98 'direct_dependent_settings': { |
| 99 'cflags': [ |
| 100 '<!@(<(pkg-config) --cflags utouch-frame)', |
| 101 ], |
| 102 }, |
| 103 'link_settings': { |
| 104 'ldflags': [ |
| 105 '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-frame)', |
| 106 ], |
| 107 'libraries': [ |
| 108 '<!@(<(pkg-config) --libs-only-l utouch-frame)', |
| 109 ], |
| 110 }, |
| 111 }], |
| 112 ], |
| 113 }, |
| 114 { |
| 115 'target_name': 'grail', |
| 116 'type': 'none', |
| 117 'conditions': [ |
| 118 ['_toolset=="target"', { |
| 119 'direct_dependent_settings': { |
| 120 'cflags': [ |
| 121 '<!@(<(pkg-config) --cflags utouch-grail)', |
| 122 ], |
| 123 }, |
| 124 'link_settings': { |
| 125 'ldflags': [ |
| 126 '<!@(<(pkg-config) --libs-only-L --libs-only-other utouch-grail)', |
| 127 ], |
| 128 'libraries': [ |
| 129 '<!@(<(pkg-config) --libs-only-l utouch-grail)', |
| 130 ], |
| 131 }, |
| 132 }], |
| 133 ], |
| 134 }, |
| 135 { |
| 94 'target_name': 'ssl', | 136 'target_name': 'ssl', |
| 95 'type': 'none', | 137 'type': 'none', |
| 96 'conditions': [ | 138 'conditions': [ |
| 97 ['_toolset=="target"', { | 139 ['_toolset=="target"', { |
| 98 'conditions': [ | 140 'conditions': [ |
| 99 ['use_openssl==1', { | 141 ['use_openssl==1', { |
| 100 'dependencies': [ | 142 'dependencies': [ |
| 101 '../../third_party/openssl/openssl.gyp:openssl', | 143 '../../third_party/openssl/openssl.gyp:openssl', |
| 102 ], | 144 ], |
| 103 }], | 145 }], |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 ], | 684 ], |
| 643 'libraries': [ | 685 'libraries': [ |
| 644 '<!@(<(pkg-config) --libs-only-l libudev)', | 686 '<!@(<(pkg-config) --libs-only-l libudev)', |
| 645 ], | 687 ], |
| 646 }, | 688 }, |
| 647 }], | 689 }], |
| 648 ], | 690 ], |
| 649 }, | 691 }, |
| 650 ], | 692 ], |
| 651 } | 693 } |
| OLD | NEW |