Commit dc42b606 authored by glider@chromium.org's avatar glider@chromium.org

Do not instrument mutate.cc and generate.cc with AddressSanitizer

Compilation of these files w/instrumentation takes too long.
This is a temporary workaround for issue 360158

BUG=360158
R=thakis@chromium.org

Review URL: https://codereview.chromium.org/224713013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266983 0039d316-1c4b-4281-b951-d872f2087c98
parent aa1bfc9c
...@@ -27,6 +27,15 @@ ...@@ -27,6 +27,15 @@
'rand_util.h', 'rand_util.h',
'rand_util.cc', 'rand_util.cc',
], ],
'conditions': [
['asan==1', {
'cflags!': [
# Compiling mutate.cc with ASan takes too long, see
# http://crbug.com/360158.
'-fsanitize=address',
],
}],
],
'include_dirs': [ 'include_dirs': [
'../../..', '../../..',
], ],
...@@ -54,6 +63,15 @@ ...@@ -54,6 +63,15 @@
'rand_util.h', 'rand_util.h',
'rand_util.cc', 'rand_util.cc',
], ],
'conditions': [
['asan==1', {
'cflags!': [
# Compiling generate.cc with ASan takes too long, see
# http://crbug.com/360158.
'-fsanitize=address',
],
}],
],
'include_dirs': [ 'include_dirs': [
'../../..', '../../..',
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment