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

Unified Diff: tools/ipc_fuzzer/fuzzer/fuzzer.gyp

Issue 1173363009: Revert of linux: Try enabling asan for ipc_fuzzer again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/fuzzer/fuzzer.gyp
diff --git a/tools/ipc_fuzzer/fuzzer/fuzzer.gyp b/tools/ipc_fuzzer/fuzzer/fuzzer.gyp
index 524b612653f645687e8914d545a2fb836ea0a5d0..909108d3c2ee839a84ac14716aa148966148deef 100644
--- a/tools/ipc_fuzzer/fuzzer/fuzzer.gyp
+++ b/tools/ipc_fuzzer/fuzzer/fuzzer.gyp
@@ -24,6 +24,16 @@
'rand_util.h',
'rand_util.cc',
],
+ 'conditions': [
+ ['asan==1', {
+ 'cflags!': [
+ # Compiling fuzzer.cc with ASan takes too long, see
+ # http://crbug.com/360158.
+ '-fsanitize=address',
+ '-fsanitize-coverage=<(sanitizer_coverage)',
+ ],
+ }],
+ ],
'include_dirs': [
'../../..',
],
« 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