| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 'libraries': [ | 372 'libraries': [ |
| 373 '-ldl', | 373 '-ldl', |
| 374 ], | 374 ], |
| 375 }, | 375 }, |
| 376 }], | 376 }], |
| 377 ], | 377 ], |
| 378 }], | 378 }], |
| 379 ], | 379 ], |
| 380 }, | 380 }, |
| 381 { | 381 { |
| 382 'target_name': 'dbus', |
| 383 'type': 'settings', |
| 384 'direct_dependent_settings': { |
| 385 'cflags': [ |
| 386 '<!@(<(pkg-config) --cflags dbus-1)', |
| 387 ], |
| 388 }, |
| 389 'link_settings': { |
| 390 'ldflags': [ |
| 391 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-1)', |
| 392 ], |
| 393 'libraries': [ |
| 394 '<!@(<(pkg-config) --libs-only-l dbus-1)', |
| 395 ], |
| 396 }, |
| 397 }, |
| 398 { |
| 382 'target_name': 'dbus-glib', | 399 'target_name': 'dbus-glib', |
| 383 'type': 'settings', | 400 'type': 'settings', |
| 384 'direct_dependent_settings': { | 401 'direct_dependent_settings': { |
| 385 'cflags': [ | 402 'cflags': [ |
| 386 '<!@(<(pkg-config) --cflags dbus-glib-1)', | 403 '<!@(<(pkg-config) --cflags dbus-glib-1)', |
| 387 ], | 404 ], |
| 388 }, | 405 }, |
| 389 'link_settings': { | 406 'link_settings': { |
| 390 'ldflags': [ | 407 'ldflags': [ |
| 391 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', | 408 '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ], | 441 ], |
| 425 'libraries': [ | 442 'libraries': [ |
| 426 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)"
)', | 443 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)"
)', |
| 427 ], | 444 ], |
| 428 }, | 445 }, |
| 429 }], | 446 }], |
| 430 ], | 447 ], |
| 431 }, | 448 }, |
| 432 ], | 449 ], |
| 433 } | 450 } |
| OLD | NEW |