| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 'link_settings': { | 419 'link_settings': { |
| 420 'ldflags': [ | 420 'ldflags': [ |
| 421 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', | 421 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', |
| 422 ], | 422 ], |
| 423 'libraries': [ | 423 'libraries': [ |
| 424 '<!@(<(pkg-config) --libs-only-l dbus-glib-1)', | 424 '<!@(<(pkg-config) --libs-only-l dbus-glib-1)', |
| 425 ], | 425 ], |
| 426 }, | 426 }, |
| 427 }, | 427 }, |
| 428 { | 428 { |
| 429 'target_name': 'glib', |
| 430 'type': 'settings', |
| 431 'direct_dependent_settings': { |
| 432 'cflags': [ |
| 433 '<!@(<(pkg-config) --cflags glib-2.0)', |
| 434 ], |
| 435 }, |
| 436 'link_settings': { |
| 437 'ldflags': [ |
| 438 '<!@(<(pkg-config) --libs-only-L --libs-only-other glib-2.0)', |
| 439 ], |
| 440 'libraries': [ |
| 441 '<!@(<(pkg-config) --libs-only-l glib-2.0)', |
| 442 ], |
| 443 }, |
| 444 }, |
| 445 { |
| 429 'target_name': 'libresolv', | 446 'target_name': 'libresolv', |
| 430 'type': 'settings', | 447 'type': 'settings', |
| 431 'link_settings': { | 448 'link_settings': { |
| 432 'libraries': [ | 449 'libraries': [ |
| 433 '-lresolv', | 450 '-lresolv', |
| 434 ], | 451 ], |
| 435 }, | 452 }, |
| 436 }, | 453 }, |
| 437 { | 454 { |
| 438 'target_name': 'ibus', | 455 'target_name': 'ibus', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 ], | 495 ], |
| 479 'libraries': [ | 496 'libraries': [ |
| 480 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', | 497 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom
mon)', |
| 481 ], | 498 ], |
| 482 }, | 499 }, |
| 483 }], | 500 }], |
| 484 ], | 501 ], |
| 485 }, | 502 }, |
| 486 ], | 503 ], |
| 487 } | 504 } |
| OLD | NEW |