| Index: base/security_unittest.cc | 
| diff --git a/base/security_unittest.cc b/base/security_unittest.cc | 
| index d613f34c5097d2299b88226d9547d2372e2aa1e4..6735f6ae247baa8309fb29329d03379bd3537d9a 100644 | 
| --- a/base/security_unittest.cc | 
| +++ b/base/security_unittest.cc | 
| @@ -43,11 +43,11 @@ Type HideValueFromCompiler(volatile Type value) { | 
| } | 
|  | 
| // - NO_TCMALLOC (should be defined if compiled with use_allocator!="tcmalloc") | 
| -// - ADDRESS_SANITIZER because it has its own memory allocator | 
| +// - ADDRESS_SANITIZER and SYZYASAN because they have their own memory allocator | 
| // - IOS does not use tcmalloc | 
| // - OS_MACOSX does not use tcmalloc | 
| #if !defined(NO_TCMALLOC) && !defined(ADDRESS_SANITIZER) && \ | 
| -    !defined(OS_IOS) && !defined(OS_MACOSX) | 
| +    !defined(OS_IOS) && !defined(OS_MACOSX) && !defined(SYZYASAN) | 
| #define TCMALLOC_TEST(function) function | 
| #else | 
| #define TCMALLOC_TEST(function) DISABLED_##function | 
|  |