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

Unified Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 253613002: Instrumented libraries: pass MSan, TSan blacklists when building. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use "cp -f" in destdir builds Created 6 years, 8 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
Index: third_party/instrumented_libraries/instrumented_libraries.gyp
diff --git a/third_party/instrumented_libraries/instrumented_libraries.gyp b/third_party/instrumented_libraries/instrumented_libraries.gyp
index b3158cbf437dcbbd26035757ac5372440d77f6e2..a2ac31e16be79f37949b841442c6997bca8d4640 100644
--- a/third_party/instrumented_libraries/instrumented_libraries.gyp
+++ b/third_party/instrumented_libraries/instrumented_libraries.gyp
@@ -21,12 +21,15 @@
'conditions': [
['asan==1', {
'sanitizer_type': 'asan',
+ 'sanitizer_blacklist': '',
}],
['msan==1', {
'sanitizer_type': 'msan',
+ 'sanitizer_blacklist': '<(msan_blacklist)',
}],
['tsan==1', {
'sanitizer_type': 'tsan',
+ 'sanitizer_blacklist': '<(tsan_blacklist)',
}],
['verbose_libraries_build==1', {
'verbose_libraries_build_flag': '--verbose',

Powered by Google App Engine
This is Rietveld 408576698