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 { |
331 'target_name': 'libgcrypt', | 352 'target_name': 'libgcrypt', |
332 'type': 'none', | 353 'type': 'none', |
333 'conditions': [ | 354 'conditions': [ |
334 ['_toolset=="target" and use_cups==1', { | 355 ['_toolset=="target" and use_cups==1', { |
335 'direct_dependent_settings': { | 356 'direct_dependent_settings': { |
336 'cflags': [ | 357 'cflags': [ |
337 '<!@(libgcrypt-config --cflags)', | 358 '<!@(libgcrypt-config --cflags)', |
338 ], | 359 ], |
339 }, | 360 }, |
340 'link_settings': { | 361 'link_settings': { |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 ], | 620 ], |
600 'libraries': [ | 621 'libraries': [ |
601 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', | 622 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', |
602 ], | 623 ], |
603 }, | 624 }, |
604 }], | 625 }], |
605 ], | 626 ], |
606 }, | 627 }, |
607 ], | 628 ], |
608 } | 629 } |
OLD | NEW |