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 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
862 'ldflags': [ | 862 'ldflags': [ |
863 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', | 863 '<!@(<(pkg-config) --libs-only-L --libs-only-other libudev)', |
864 ], | 864 ], |
865 'libraries': [ | 865 'libraries': [ |
866 '<!@(<(pkg-config) --libs-only-l libudev)', | 866 '<!@(<(pkg-config) --libs-only-l libudev)', |
867 ], | 867 ], |
868 }, | 868 }, |
869 }], | 869 }], |
870 ], | 870 ], |
871 }, | 871 }, |
| 872 { |
| 873 'target_name': 'dridrm', |
| 874 'type': 'none', |
| 875 'direct_dependent_settings': { |
| 876 'cflags': [ |
| 877 '<!@(<(pkg-config) --cflags libdrm)', |
| 878 ], |
| 879 }, |
| 880 'link_settings': { |
| 881 'libraries': [ |
| 882 '<!@(<(pkg-config) --libs-only-l libdrm)', |
| 883 ], |
| 884 }, |
| 885 }, |
872 ], | 886 ], |
873 } | 887 } |
OLD | NEW |