diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 06:42:28 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 06:42:28 +0000 |
commit | 45350979cfabdd6248eaa2919e93e39c27f0e834 (patch) | |
tree | 0e37428ff17f8eff0c986c9165121fde9356a3a7 /base/base.gyp | |
parent | edcca49267770144ca98eb056278a8c45330e8a5 (diff) | |
download | chromium_src-45350979cfabdd6248eaa2919e93e39c27f0e834.zip chromium_src-45350979cfabdd6248eaa2919e93e39c27f0e834.tar.gz chromium_src-45350979cfabdd6248eaa2919e93e39c27f0e834.tar.bz2 |
TBR: willchan
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gyp')
-rw-r--r-- | base/base.gyp | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/base/base.gyp b/base/base.gyp index 562de8c..51aa6c8 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -384,12 +384,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', ], @@ -672,14 +690,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', |