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

Side by Side Diff: build/config/sanitizers/sanitizers.gni

Issue 1150193002: GN: Add support for prebuilt instrumented libraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 declare_args() {
6 # Track where uninitialized memory originates from. From fastest to slowest:
7 # 0 - no tracking, 1 - track only the initial allocation site, 2 - track the
8 # chain of stores leading from allocation site to use site.
9 msan_track_origins = 2
10
11 # Use dynamic libraries instrumented by one of the sanitizers instead of the
12 # standard system libraries. Set this flag to download prebuilt binaries from
13 # GCS.
14 use_prebuilt_instrumented_libraries = false
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698