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