Chromium Code Reviews| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 456 'ldflags': [ | 456 'ldflags': [ |
| 457 '<!@(<(pkg-config) --libs-only-L --libs-only-other "ibus-1.0 >= <( ibus_min_version)")', | 457 '<!@(<(pkg-config) --libs-only-L --libs-only-other "ibus-1.0 >= <( ibus_min_version)")', |
| 458 ], | 458 ], |
| 459 'libraries': [ | 459 'libraries': [ |
| 460 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )', | 460 '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)" )', |
| 461 ], | 461 ], |
| 462 }, | 462 }, |
| 463 }], | 463 }], |
| 464 ], | 464 ], |
| 465 }, | 465 }, |
| 466 { | |
| 467 'target_name': 'wayland', | |
| 468 'type': 'settings', | |
| 469 'conditions': [ | |
| 470 ['use_wayland == 1', { | |
| 471 'cflags': [ | |
| 472 '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbcomm on)', | |
|
tfarina
2011/07/26 16:14:41
I think wayland-client and the others will be need
| |
| 473 ], | |
| 474 'direct_dependent_settings': { | |
| 475 'cflags': [ | |
| 476 '<!@(<(pkg-config) --cflags cairo wayland-client wayland-egl xkbco mmon)', | |
| 477 ], | |
| 478 }, | |
| 479 'link_settings': { | |
| 480 'ldflags': [ | |
| 481 '<!@(<(pkg-config) --libs-only-L --libs-only-other wayland-client wayland-egl xkbcommon)', | |
| 482 ], | |
| 483 'libraries': [ | |
| 484 '<!@(<(pkg-config) --libs-only-l wayland-client wayland-egl xkbcom mon)', | |
| 485 ], | |
| 486 }, | |
| 487 }], | |
| 488 ], | |
| 489 }, | |
| 466 ], | 490 ], |
| 467 } | 491 } |
| OLD | NEW |