diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/base.gyp | 28 | ||||
-rw-r--r-- | base/leak_annotations.h | 2 |
2 files changed, 20 insertions, 10 deletions
diff --git a/base/base.gyp b/base/base.gyp index 37ce60b..bcb88f6 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -379,12 +379,30 @@ [ 'OS == "linux" or OS == "freebsd"', { 'sources/': [ ['exclude', '_(mac|win|chromeos)\\.cc$'], ['exclude', '\\.mm?$' ] ], + 'variables' : { + 'linux_use_heapchecker%' : 0, + }, 'conditions': [ [ 'chromeos==1 or toolkit_views==1', { 'sources/': [ ['include', '_chromeos\\.cc$'] ] }, ], - [ 'linux_use_tcmalloc==1', { + [ 'linux_use_heapchecker==1', { + 'defines': [ + 'LINUX_USE_HEAPCHECKER', + ], + 'direct_dependent_settings': { + 'defines': [ + 'LINUX_USE_HEAPCHECKER', + ], + }, + }, + ], + # linux_use_heapchecker==1 implies linux_use_tcmalloc=1. + [ 'linux_use_tcmalloc==1 or linux_use_heapchecker==1', { + 'dependencies': [ + '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', + ], 'defines': [ 'LINUX_USE_TCMALLOC', ], @@ -666,14 +684,6 @@ 'file_version_info_unittest.cc', 'worker_pool_linux_unittest.cc', ], - 'conditions': [ - [ 'linux_use_tcmalloc==1', { - 'dependencies': [ - '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', - ], - }, - ], - ], 'dependencies': [ '../build/linux/system.gyp:gtk', '../build/linux/system.gyp:nss', diff --git a/base/leak_annotations.h b/base/leak_annotations.h index 7e652a5..aa57dff 100644 --- a/base/leak_annotations.h +++ b/base/leak_annotations.h @@ -5,7 +5,7 @@ #ifndef BASE_LEAK_ANNOTATIONS_H_ #define BASE_LEAK_ANNOTATIONS_H_ -#if defined(LINUX_USE_TCMALLOC) +#if defined(LINUX_USE_TCMALLOC) && defined(LINUX_USE_HEAPCHECKER) #include "third_party/tcmalloc/heap-checker.h" |