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

Unified Diff: build/common.gypi

Issue 141943002: Introduce an MSan blacklist and use it to ignore V8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/msan/blacklist.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 98cd460d508a3d1a64a98bae463b0413d344c0a5..7d4a70bd8c75e389694f375998842072ae7b80c4 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -375,6 +375,7 @@
# MemorySanitizer only works with clang, but msan=1 implies clang=1
# See http://clang.llvm.org/docs/MemorySanitizer.html
'msan%': 0,
+ 'msan_blacklist%': '<(PRODUCT_DIR)/../../tools/msan/blacklist.txt',
# Use the dynamic libraries instrumented by one of the sanitizers
# instead of the standard system libraries.
@@ -938,6 +939,7 @@
'asan_coverage%': '<(asan_coverage)',
'lsan%': '<(lsan)',
'msan%': '<(msan)',
+ 'msan_blacklist%': '<(msan_blacklist)',
'tsan%': '<(tsan)',
'tsan_blacklist%': '<(tsan_blacklist)',
'use_instrumented_libraries%': '<(use_instrumented_libraries)',
@@ -3525,6 +3527,7 @@
'-fsanitize=memory',
'-fsanitize-memory-track-origins',
'-fPIC',
+ '-fsanitize-blacklist=<(msan_blacklist)',
],
'ldflags': [
'-fsanitize=memory',
« no previous file with comments | « no previous file | tools/msan/blacklist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698