Chromium Code Reviews| 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 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 876 'ldflags': [ | 876 'ldflags': [ |
| 877 '<!@(pkg-config --libs-only-L --libs-only-other xrandr)', | 877 '<!@(pkg-config --libs-only-L --libs-only-other xrandr)', |
| 878 ], | 878 ], |
| 879 'libraries': [ | 879 'libraries': [ |
| 880 '<!@(pkg-config --libs-only-l xrandr)', | 880 '<!@(pkg-config --libs-only-l xrandr)', |
| 881 ], | 881 ], |
| 882 }, | 882 }, |
| 883 }], | 883 }], |
| 884 ], | 884 ], |
| 885 }, | 885 }, |
| 886 { | |
| 887 'target_name': 'libcap', | |
|
Paweł Hajdan Jr.
2013/10/30 00:22:58
nit: Please keep the list of targets sorted alphab
jln (very slow on Chromium)
2013/10/30 00:33:34
Done.
| |
| 888 'type': 'none', | |
| 889 'link_settings': { | |
| 890 'libraries': [ | |
| 891 '-lcap', | |
| 892 ], | |
| 893 }, | |
| 894 }, | |
| 886 ], | 895 ], |
| 887 } | 896 } |
| OLD | NEW |