diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-16 08:04:03 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-16 08:04:03 +0000 |
commit | 39ca7de68778d0987c7308d5e6c19886c2bbcfc6 (patch) | |
tree | c1dd9e137178b17b2400954f5a2e3a9123f6a76d /build | |
parent | 15e678a9d2010ae0332713bc0f9d0be002a9a32e (diff) | |
download | chromium_src-39ca7de68778d0987c7308d5e6c19886c2bbcfc6.zip chromium_src-39ca7de68778d0987c7308d5e6c19886c2bbcfc6.tar.gz chromium_src-39ca7de68778d0987c7308d5e6c19886c2bbcfc6.tar.bz2 |
Add the linux_use_debugallocation flag.
Setting this flag to 1 shall force the use of debugallocation.cc instead of
tcmalloc.cc
The flag is off by default because it still needs testing.
BUG=30715
Review URL: http://codereview.chromium.org/1513043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 8a38777..19de56c 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -205,6 +205,9 @@ # Enable TCMalloc. 'linux_use_tcmalloc%': 0, + # Disable TCMalloc's debugallocation. + 'linux_use_debugallocation%': 0, + # Disable TCMalloc's heapchecker. 'linux_use_heapchecker%': 0, |