Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: base/allocator/allocator.gyp

Issue 8632007: A deeper heap profile dumper in third_party/tcmalloc/chromium. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refactored. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 '<(tcmalloc_dir)/src/base/thread_annotations.h', 87 '<(tcmalloc_dir)/src/base/thread_annotations.h',
88 '<(tcmalloc_dir)/src/base/thread_lister.c', 88 '<(tcmalloc_dir)/src/base/thread_lister.c',
89 '<(tcmalloc_dir)/src/base/thread_lister.h', 89 '<(tcmalloc_dir)/src/base/thread_lister.h',
90 '<(tcmalloc_dir)/src/base/vdso_support.cc', 90 '<(tcmalloc_dir)/src/base/vdso_support.cc',
91 '<(tcmalloc_dir)/src/base/vdso_support.h', 91 '<(tcmalloc_dir)/src/base/vdso_support.h',
92 '<(tcmalloc_dir)/src/central_freelist.cc', 92 '<(tcmalloc_dir)/src/central_freelist.cc',
93 '<(tcmalloc_dir)/src/central_freelist.h', 93 '<(tcmalloc_dir)/src/central_freelist.h',
94 '<(tcmalloc_dir)/src/common.cc', 94 '<(tcmalloc_dir)/src/common.cc',
95 '<(tcmalloc_dir)/src/common.h', 95 '<(tcmalloc_dir)/src/common.h',
96 '<(tcmalloc_dir)/src/debugallocation.cc', 96 '<(tcmalloc_dir)/src/debugallocation.cc',
97 '<(tcmalloc_dir)/src/deep-heap-profile.cc',
Alexander Potapenko 2011/12/20 13:57:23 Shouldn't deep-heap-profile.h appear here as well?
Dai Mikurube (NOT FULLTIME) 2011/12/21 09:13:49 Ah, good catch. Thanks. Platform-specific sectio
97 '<(tcmalloc_dir)/src/free_list.cc', 98 '<(tcmalloc_dir)/src/free_list.cc',
98 '<(tcmalloc_dir)/src/free_list.h', 99 '<(tcmalloc_dir)/src/free_list.h',
99 '<(tcmalloc_dir)/src/getpc.h', 100 '<(tcmalloc_dir)/src/getpc.h',
100 '<(tcmalloc_dir)/src/google/heap-checker.h', 101 '<(tcmalloc_dir)/src/google/heap-checker.h',
101 '<(tcmalloc_dir)/src/google/heap-profiler.h', 102 '<(tcmalloc_dir)/src/google/heap-profiler.h',
102 '<(tcmalloc_dir)/src/google/malloc_extension.h', 103 '<(tcmalloc_dir)/src/google/malloc_extension.h',
103 '<(tcmalloc_dir)/src/google/malloc_extension_c.h', 104 '<(tcmalloc_dir)/src/google/malloc_extension_c.h',
104 '<(tcmalloc_dir)/src/google/malloc_hook.h', 105 '<(tcmalloc_dir)/src/google/malloc_hook.h',
105 '<(tcmalloc_dir)/src/google/malloc_hook_c.h', 106 '<(tcmalloc_dir)/src/google/malloc_hook_c.h',
106 '<(tcmalloc_dir)/src/google/profiler.h', 107 '<(tcmalloc_dir)/src/google/profiler.h',
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 '$(VCInstallDir)lib', 433 '$(VCInstallDir)lib',
433 '<(SHARED_INTERMEDIATE_DIR)/allocator', 434 '<(SHARED_INTERMEDIATE_DIR)/allocator',
434 ], 435 ],
435 }, 436 },
436 ], 437 ],
437 }, 438 },
438 ], 439 ],
439 }], 440 }],
440 ], 441 ],
441 } 442 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698