OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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)"', | 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', |
10 }, | 10 }, |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 'ldflags': [ | 216 'ldflags': [ |
217 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)', | 217 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)', |
218 ], | 218 ], |
219 'libraries': [ | 219 'libraries': [ |
220 '<!@(<(pkg-config) --libs-only-l x11)', | 220 '<!@(<(pkg-config) --libs-only-l x11)', |
221 ], | 221 ], |
222 }, | 222 }, |
223 }]] | 223 }]] |
224 }, | 224 }, |
225 { | 225 { |
| 226 'target_name': 'xext', |
| 227 'type': 'settings', |
| 228 'conditions': [ |
| 229 ['_toolset=="target"', { |
| 230 'direct_dependent_settings': { |
| 231 'cflags': [ |
| 232 '<!@(<(pkg-config) --cflags xext)', |
| 233 ], |
| 234 }, |
| 235 'link_settings': { |
| 236 'ldflags': [ |
| 237 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', |
| 238 ], |
| 239 'libraries': [ |
| 240 '<!@(<(pkg-config) --libs-only-l xext)', |
| 241 ], |
| 242 }, |
| 243 }]] |
| 244 }, |
| 245 { |
226 'target_name': 'selinux', | 246 'target_name': 'selinux', |
227 'type': 'settings', | 247 'type': 'settings', |
228 'conditions': [ | 248 'conditions': [ |
229 ['_toolset=="target"', { | 249 ['_toolset=="target"', { |
230 'link_settings': { | 250 'link_settings': { |
231 'libraries': [ | 251 'libraries': [ |
232 '-lselinux', | 252 '-lselinux', |
233 ], | 253 ], |
234 }, | 254 }, |
235 }]] | 255 }]] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 # }, | 292 # }, |
273 # }, | 293 # }, |
274 ], | 294 ], |
275 } | 295 } |
276 | 296 |
277 # Local Variables: | 297 # Local Variables: |
278 # tab-width:2 | 298 # tab-width:2 |
279 # indent-tabs-mode:nil | 299 # indent-tabs-mode:nil |
280 # End: | 300 # End: |
281 # vim: set expandtab tabstop=2 shiftwidth=2: | 301 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |