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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 'ldflags': [ | 259 'ldflags': [ |
260 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', | 260 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', |
261 ], | 261 ], |
262 'libraries': [ | 262 'libraries': [ |
263 '<!@(<(pkg-config) --libs-only-l xext)', | 263 '<!@(<(pkg-config) --libs-only-l xext)', |
264 ], | 264 ], |
265 }, | 265 }, |
266 }]] | 266 }]] |
267 }, | 267 }, |
268 { | 268 { |
| 269 'target_name': 'xtst', |
| 270 'type': 'settings', |
| 271 'conditions': [ |
| 272 ['_toolset=="target"', { |
| 273 'direct_dependent_settings': { |
| 274 'cflags': [ |
| 275 '<!@(<(pkg-config) --cflags xtst)', |
| 276 ], |
| 277 }, |
| 278 'link_settings': { |
| 279 'ldflags': [ |
| 280 '<!@(<(pkg-config) --libs-only-L --libs-only-other xtst)', |
| 281 ], |
| 282 'libraries': [ |
| 283 '<!@(<(pkg-config) --libs-only-l xtst)', |
| 284 ], |
| 285 }, |
| 286 }]] |
| 287 }, |
| 288 { |
269 'target_name': 'selinux', | 289 'target_name': 'selinux', |
270 'type': 'settings', | 290 'type': 'settings', |
271 'conditions': [ | 291 'conditions': [ |
272 ['_toolset=="target"', { | 292 ['_toolset=="target"', { |
273 'link_settings': { | 293 'link_settings': { |
274 'libraries': [ | 294 'libraries': [ |
275 '-lselinux', | 295 '-lselinux', |
276 ], | 296 ], |
277 }, | 297 }, |
278 }]] | 298 }]] |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 ], | 386 ], |
367 }, | 387 }, |
368 ], | 388 ], |
369 } | 389 } |
370 | 390 |
371 # Local Variables: | 391 # Local Variables: |
372 # tab-width:2 | 392 # tab-width:2 |
373 # indent-tabs-mode:nil | 393 # indent-tabs-mode:nil |
374 # End: | 394 # End: |
375 # vim: set expandtab tabstop=2 shiftwidth=2: | 395 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |