| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['sysroot!=""', { | 8 ['sysroot!=""', { |
| 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', | 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', |
| 10 }, { | 10 }, { |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 }, | 616 }, |
| 617 'link_settings': { | 617 'link_settings': { |
| 618 'libraries': [ | 618 'libraries': [ |
| 619 '<!@(libgcrypt-config --libs)', | 619 '<!@(libgcrypt-config --libs)', |
| 620 ], | 620 ], |
| 621 }, | 621 }, |
| 622 }], | 622 }], |
| 623 ], | 623 ], |
| 624 }, | 624 }, |
| 625 { | 625 { |
| 626 'target_name': 'selinux', | |
| 627 'type': 'none', | |
| 628 'conditions': [ | |
| 629 ['_toolset=="target"', { | |
| 630 'link_settings': { | |
| 631 'libraries': [ | |
| 632 '-lselinux', | |
| 633 ], | |
| 634 }, | |
| 635 }], | |
| 636 ], | |
| 637 }, | |
| 638 { | |
| 639 'target_name': 'gnome_keyring', | 626 'target_name': 'gnome_keyring', |
| 640 'type': 'none', | 627 'type': 'none', |
| 641 'conditions': [ | 628 'conditions': [ |
| 642 ['use_gnome_keyring==1', { | 629 ['use_gnome_keyring==1', { |
| 643 'direct_dependent_settings': { | 630 'direct_dependent_settings': { |
| 644 'cflags': [ | 631 'cflags': [ |
| 645 '<!@(<(pkg-config) --cflags gnome-keyring-1)', | 632 '<!@(<(pkg-config) --cflags gnome-keyring-1)', |
| 646 ], | 633 ], |
| 647 'defines': [ | 634 'defines': [ |
| 648 'USE_GNOME_KEYRING', | 635 'USE_GNOME_KEYRING', |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 ], | 821 ], |
| 835 'libraries': [ | 822 'libraries': [ |
| 836 '<!@(<(pkg-config) --libs-only-l libudev)', | 823 '<!@(<(pkg-config) --libs-only-l libudev)', |
| 837 ], | 824 ], |
| 838 }, | 825 }, |
| 839 }], | 826 }], |
| 840 ], | 827 ], |
| 841 }, | 828 }, |
| 842 ], | 829 ], |
| 843 } | 830 } |
| OLD | NEW |