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

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

Issue 202633008: Fix linker warning on build with target_arch=ia32. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 months 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
« no previous file with comments | « no previous file | printing/cups_config_helper.py » ('j') | 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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 }, { 10 }, {
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 'type': 'none', 734 'type': 'none',
735 'conditions': [ 735 'conditions': [
736 ['_toolset=="target" and use_cups==1', { 736 ['_toolset=="target" and use_cups==1', {
737 'direct_dependent_settings': { 737 'direct_dependent_settings': {
738 'cflags': [ 738 'cflags': [
739 '<!@(libgcrypt-config --cflags)', 739 '<!@(libgcrypt-config --cflags)',
740 ], 740 ],
741 }, 741 },
742 'link_settings': { 742 'link_settings': {
743 'libraries': [ 743 'libraries': [
744 '<!@(libgcrypt-config --libs)', 744 '<!@(libgcrypt-config --libs | sed -e \'s/-L[^ ]*//\')',
satorux1 2014/03/20 01:55:11 please add a comment explaining why you need to do
hidehiko 2014/03/20 07:55:09 Done.
745 ], 745 ],
746 }, 746 },
747 }], 747 }],
748 ], 748 ],
749 }, 749 },
750 { 750 {
751 'target_name': 'libpci', 751 'target_name': 'libpci',
752 'type': 'static_library', 752 'type': 'static_library',
753 'cflags': [ 753 'cflags': [
754 '<!@(<(pkg-config) --cflags libpci)', 754 '<!@(<(pkg-config) --cflags libpci)',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 ], 999 ],
1000 'libraries': [ 1000 'libraries': [
1001 '<!@(<(pkg-config) --libs-only-l libudev)', 1001 '<!@(<(pkg-config) --libs-only-l libudev)',
1002 ], 1002 ],
1003 }, 1003 },
1004 }], 1004 }],
1005 ], 1005 ],
1006 }, 1006 },
1007 ], 1007 ],
1008 } 1008 }
OLDNEW
« no previous file with comments | « no previous file | printing/cups_config_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698