| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', | 321 '<!@(<(pkg-config) --libs-only-L --libs-only-other xext)', |
| 322 ], | 322 ], |
| 323 'libraries': [ | 323 'libraries': [ |
| 324 '<!@(<(pkg-config) --libs-only-l xext)', | 324 '<!@(<(pkg-config) --libs-only-l xext)', |
| 325 ], | 325 ], |
| 326 }, | 326 }, |
| 327 }], | 327 }], |
| 328 ], | 328 ], |
| 329 }, | 329 }, |
| 330 { | 330 { |
| 331 'target_name': 'xfixes', | |
| 332 'type': 'none', | |
| 333 'conditions': [ | |
| 334 ['_toolset=="target"', { | |
| 335 'direct_dependent_settings': { | |
| 336 'cflags': [ | |
| 337 '<!@(<(pkg-config) --cflags xfixes)', | |
| 338 ], | |
| 339 }, | |
| 340 'link_settings': { | |
| 341 'ldflags': [ | |
| 342 '<!@(<(pkg-config) --libs-only-L --libs-only-other xfixes)', | |
| 343 ], | |
| 344 'libraries': [ | |
| 345 '<!@(<(pkg-config) --libs-only-l xfixes)', | |
| 346 ], | |
| 347 }, | |
| 348 }], | |
| 349 ], | |
| 350 }, | |
| 351 { | |
| 352 'target_name': 'libgcrypt', | 331 'target_name': 'libgcrypt', |
| 353 'type': 'none', | 332 'type': 'none', |
| 354 'conditions': [ | 333 'conditions': [ |
| 355 ['_toolset=="target" and use_cups==1', { | 334 ['_toolset=="target" and use_cups==1', { |
| 356 'direct_dependent_settings': { | 335 'direct_dependent_settings': { |
| 357 'cflags': [ | 336 'cflags': [ |
| 358 '<!@(libgcrypt-config --cflags)', | 337 '<!@(libgcrypt-config --cflags)', |
| 359 ], | 338 ], |
| 360 }, | 339 }, |
| 361 'link_settings': { | 340 'link_settings': { |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 ], | 599 ], |
| 621 'libraries': [ | 600 'libraries': [ |
| 622 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', | 601 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', |
| 623 ], | 602 ], |
| 624 }, | 603 }, |
| 625 }], | 604 }], |
| 626 ], | 605 ], |
| 627 }, | 606 }, |
| 628 ], | 607 ], |
| 629 } | 608 } |
| OLD | NEW |