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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)"', | 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)"', |
10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the | 10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the |
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1042 'ldflags': [ | 1042 'ldflags': [ |
1043 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', | 1043 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', |
1044 ], | 1044 ], |
1045 'libraries': [ | 1045 'libraries': [ |
1046 '<!@(<(pkg-config) --libs-only-l libudev)', | 1046 '<!@(<(pkg-config) --libs-only-l libudev)', |
1047 ], | 1047 ], |
1048 }, | 1048 }, |
1049 }], | 1049 }], |
1050 ], | 1050 ], |
1051 }, | 1051 }, |
| 1052 { |
| 1053 'target_name': 'directfb', |
| 1054 'type': 'none', |
| 1055 'conditions': [ |
| 1056 ['_toolset=="target"', { |
| 1057 'direct_dependent_settings': { |
| 1058 'cflags': [ |
| 1059 '<!@(<(pkg-config) --cflags directfb)', |
| 1060 ], |
| 1061 }, |
| 1062 'link_settings': { |
| 1063 'ldflags': [ |
| 1064 '<!@(<(pkg-config) --libs-only-L --libs-only-other directfb)', |
| 1065 ], |
| 1066 'libraries': [ |
| 1067 '<!@(<(pkg-config) --libs-only-l directfb)', |
| 1068 ], |
| 1069 }, |
| 1070 }], |
| 1071 ], |
| 1072 }, |
1052 ], | 1073 ], |
1053 } | 1074 } |
OLD | NEW |