Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: build/linux/system.gyp

Issue 51773002: Add a libcap target to link against libcap2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698