diff options
author | peria@chromium.org <peria@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 11:17:48 +0000 |
---|---|---|
committer | peria@chromium.org <peria@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 11:17:48 +0000 |
commit | 8e9ead8551868b6c66188f9a852ab4b5c6917789 (patch) | |
tree | a757c1afe18c77764ec2c1b40296ec94cd4c045a /base/allocator | |
parent | fc4743ad25260e7c4c64ce4060c141a526a4a287 (diff) | |
download | chromium_src-8e9ead8551868b6c66188f9a852ab4b5c6917789.zip chromium_src-8e9ead8551868b6c66188f9a852ab4b5c6917789.tar.gz chromium_src-8e9ead8551868b6c66188f9a852ab4b5c6917789.tar.bz2 |
Enable tcmalloc heap-profiler module on Windows.
This CL only enables heap-profiler in static build
on Windows.
With this CL, heap-profiler does not work fully.
It outputs following information.
- memory mapped files and their address regions
- stack traces of malloc() calls
Reference CL: http://crrev.com/11415113/
BUG=159993
Review URL: https://codereview.chromium.org/96153002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/allocator')
-rw-r--r-- | base/allocator/allocator.gyp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/base/allocator/allocator.gyp b/base/allocator/allocator.gyp index ef98d09..85574ab 100644 --- a/base/allocator/allocator.gyp +++ b/base/allocator/allocator.gyp @@ -371,18 +371,11 @@ # included by allocator_shim.cc 'debugallocation_shim.cc', - # heap-profiler/checker/cpuprofiler + # heap-checker/cpuprofiler '<(tcmalloc_dir)/src/base/thread_lister.c', '<(tcmalloc_dir)/src/base/thread_lister.h', - '<(tcmalloc_dir)/src/deep-heap-profile.cc', - '<(tcmalloc_dir)/src/deep-heap-profile.h', '<(tcmalloc_dir)/src/heap-checker-bcad.cc', '<(tcmalloc_dir)/src/heap-checker.cc', - '<(tcmalloc_dir)/src/heap-profiler.cc', - '<(tcmalloc_dir)/src/heap-profile-table.cc', - '<(tcmalloc_dir)/src/heap-profile-table.h', - '<(tcmalloc_dir)/src/memory_region_map.cc', - '<(tcmalloc_dir)/src/memory_region_map.h', '<(tcmalloc_dir)/src/profiledata.cc', '<(tcmalloc_dir)/src/profiledata.h', '<(tcmalloc_dir)/src/profile-handler.cc', |