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

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

Issue 224713013: Do not instrument mutate.cc and generate.cc with AddressSanitizer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« 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/mutate/mutate.gyp
diff --git a/tools/ipc_fuzzer/mutate/mutate.gyp b/tools/ipc_fuzzer/mutate/mutate.gyp
index 2dbe6e692f962d704d4d077e3c19d6de18f9388c..f1d5abd3981c4c72c3ed886006bd5b0c71c71f73 100644
--- a/tools/ipc_fuzzer/mutate/mutate.gyp
+++ b/tools/ipc_fuzzer/mutate/mutate.gyp
@@ -27,6 +27,15 @@
'rand_util.h',
'rand_util.cc',
],
+ 'conditions': [
+ ['asan==1', {
+ 'cflags!': [
+ # Compiling mutate.cc with ASan takes too long, see
+ # http://crbug.com/360158.
+ '-fsanitize=address',
+ ],
+ }],
+ ],
'include_dirs': [
'../../..',
],
@@ -54,6 +63,15 @@
'rand_util.h',
'rand_util.cc',
],
+ 'conditions': [
+ ['asan==1', {
+ 'cflags!': [
+ # Compiling generate.cc with ASan takes too long, see
+ # http://crbug.com/360158.
+ '-fsanitize=address',
+ ],
+ }],
+ ],
'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