diff options
author | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 22:59:04 +0000 |
---|---|---|
committer | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 22:59:04 +0000 |
commit | fb3c4dee85a469acbfd2b5d412a3a34215f4d168 (patch) | |
tree | b92c9dc81dd660aa48cf7defb211a1cd0bd37513 /sandbox | |
parent | c1a5913949f7a98860c10a0ab7a0e47175a32b96 (diff) | |
download | chromium_src-fb3c4dee85a469acbfd2b5d412a3a34215f4d168.zip chromium_src-fb3c4dee85a469acbfd2b5d412a3a34215f4d168.tar.gz chromium_src-fb3c4dee85a469acbfd2b5d412a3a34215f4d168.tar.bz2 |
Do not instrument the suid sandbox binary with sanitizer tools.
BUG=382766
R=glider@chromium.org, jln@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/323003006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276190 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/linux/sandbox_linux.gypi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sandbox/linux/sandbox_linux.gypi b/sandbox/linux/sandbox_linux.gypi index 53518b8..6235248 100644 --- a/sandbox/linux/sandbox_linux.gypi +++ b/sandbox/linux/sandbox_linux.gypi @@ -216,6 +216,13 @@ 'include_dirs': [ '../..', ], + # Do not use any sanitizer tools with this binary. http://crbug.com/382766 + 'cflags/': [ + ['exclude', '-fsanitize'], + ], + 'ldflags/': [ + ['exclude', '-fsanitize'], + ], }, { 'target_name': 'sandbox_services', 'type': '<(component)', |