OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'conditions': [ |
| 8 ['sysroot!=""', { |
| 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)"', |
| 10 }, { |
| 11 'pkg-config': 'pkg-config' |
| 12 }], |
| 13 ], |
| 14 }, |
| 15 'targets': [ |
| 16 { |
| 17 'target_name': 'directfb', |
| 18 'type': 'none', |
| 19 'conditions': [ |
| 20 ['_toolset=="target"', { |
| 21 'direct_dependent_settings': { |
| 22 'cflags': [ |
| 23 '<!@(<(pkg-config) --cflags directfb)', |
| 24 ], |
| 25 }, |
| 26 'link_settings': { |
| 27 'ldflags': [ |
| 28 '<!@(<(pkg-config) --libs-only-L --libs-only-other directfb)', |
| 29 ], |
| 30 'libraries': [ |
| 31 '<!@(<(pkg-config) --libs-only-l directfb)', |
| 32 ], |
| 33 }, |
| 34 }], |
| 35 ], |
| 36 }, |
| 37 ], |
| 38 } |
OLD | NEW |