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

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: Move to respect alphabetical order. 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 'brlapi__leaveTtyMode', 470 'brlapi__leaveTtyMode',
471 'brlapi__writeDots', 471 'brlapi__writeDots',
472 'brlapi__readKey', 472 'brlapi__readKey',
473 ], 473 ],
474 'message': 'Generating libbrlapi library loader.', 474 'message': 'Generating libbrlapi library loader.',
475 'process_outputs_as_sources': 1, 475 'process_outputs_as_sources': 1,
476 }, 476 },
477 ], 477 ],
478 }, 478 },
479 { 479 {
480 'target_name': 'libcap',
481 'type': 'none',
482 'link_settings': {
483 'libraries': [
484 '-lcap',
485 ],
486 },
487 },
488 {
480 'target_name': 'libgcrypt', 489 'target_name': 'libgcrypt',
481 'type': 'none', 490 'type': 'none',
482 'conditions': [ 491 'conditions': [
483 ['_toolset=="target" and use_cups==1', { 492 ['_toolset=="target" and use_cups==1', {
484 'direct_dependent_settings': { 493 'direct_dependent_settings': {
485 'cflags': [ 494 'cflags': [
486 '<!@(libgcrypt-config --cflags)', 495 '<!@(libgcrypt-config --cflags)',
487 ], 496 ],
488 }, 497 },
489 'link_settings': { 498 'link_settings': {
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 ], 887 ],
879 'libraries': [ 888 'libraries': [
880 '<!@(pkg-config --libs-only-l xrandr)', 889 '<!@(pkg-config --libs-only-l xrandr)',
881 ], 890 ],
882 }, 891 },
883 }], 892 }],
884 ], 893 ],
885 }, 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