diff options
author | sammc <sammc@chromium.org> | 2015-05-31 18:09:36 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-01 01:10:10 +0000 |
commit | 74f1d187956e64c25724b116ed06ca7d00b89917 (patch) | |
tree | 06691d49eb471280c56b0a4d6bf8374954b957f1 /build/config/compiler/BUILD.gn | |
parent | b45962be3b0ac2a4133290e4e02b4f9fdec012a6 (diff) | |
download | chromium_src-74f1d187956e64c25724b116ed06ca7d00b89917.zip chromium_src-74f1d187956e64c25724b116ed06ca7d00b89917.tar.gz chromium_src-74f1d187956e64c25724b116ed06ca7d00b89917.tar.bz2 |
GN: Add support for prebuilt instrumented libraries.
TBR=glider@chromium.org
Review URL: https://codereview.chromium.org/1150193002
Cr-Commit-Position: refs/heads/master@{#332148}
Diffstat (limited to 'build/config/compiler/BUILD.gn')
-rw-r--r-- | build/config/compiler/BUILD.gn | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn index 3961b8c..30872ae 100644 --- a/build/config/compiler/BUILD.gn +++ b/build/config/compiler/BUILD.gn @@ -57,11 +57,6 @@ declare_args() { # The patch is preapplied to the internal toolchain and hence all bots. msvs_xtree_patched = false } - - # Track where uninitialized memory originates from. From fastest to slowest: - # 0 - no tracking, 1 - track only the initial allocation site, 2 - track the - # chain of stores leading from allocation site to use site. - msan_track_origins = 2 } # default_include_dirs --------------------------------------------------------- @@ -175,8 +170,6 @@ config("compiler") { "-fsanitize-memory-track-origins=$msan_track_origins", "-fsanitize-blacklist=$msan_blacklist_path", ] - - # TODO(GYP): Support instrumented libraries. } if (use_custom_libcxx) { |