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

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

Issue 208123002: Disable the globals instrumentation under asan==1, not asan_coverage==1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | 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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 'libgcrypt-config': '<(chroot_cmd) ./libgcrypt-config-wrapper "<(sysroot )"', 10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the
11 # sysroot, so there's no need to prefix it with <(chroot_cmd).
12 'libgcrypt-config': './libgcrypt-config-wrapper "<(sysroot)"',
11 }, { 13 }, {
12 'pkg-config': 'pkg-config', 14 'pkg-config': 'pkg-config',
13 'libgcrypt-config': 'libgcrypt-config', 15 'libgcrypt-config': 'libgcrypt-config',
14 }], 16 }],
15 ], 17 ],
16 18
17 'linux_link_libgps%': 0, 19 'linux_link_libgps%': 0,
18 'linux_link_libpci%': 0, 20 'linux_link_libpci%': 0,
19 'linux_link_libspeechd%': 0, 21 'linux_link_libspeechd%': 0,
20 'linux_link_libbrlapi%': 0, 22 'linux_link_libbrlapi%': 0,
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 ], 1003 ],
1002 'libraries': [ 1004 'libraries': [
1003 '<!@(<(pkg-config) --libs-only-l libudev)', 1005 '<!@(<(pkg-config) --libs-only-l libudev)',
1004 ], 1006 ],
1005 }, 1007 },
1006 }], 1008 }],
1007 ], 1009 ],
1008 }, 1010 },
1009 ], 1011 ],
1010 } 1012 }
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