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

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: Reflected the comments. Created 8 years, 12 months 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 '<(tcmalloc_dir)/src/base/thread_annotations.h', 92 '<(tcmalloc_dir)/src/base/thread_annotations.h',
93 '<(tcmalloc_dir)/src/base/thread_lister.c', 93 '<(tcmalloc_dir)/src/base/thread_lister.c',
94 '<(tcmalloc_dir)/src/base/thread_lister.h', 94 '<(tcmalloc_dir)/src/base/thread_lister.h',
95 '<(tcmalloc_dir)/src/base/vdso_support.cc', 95 '<(tcmalloc_dir)/src/base/vdso_support.cc',
96 '<(tcmalloc_dir)/src/base/vdso_support.h', 96 '<(tcmalloc_dir)/src/base/vdso_support.h',
97 '<(tcmalloc_dir)/src/central_freelist.cc', 97 '<(tcmalloc_dir)/src/central_freelist.cc',
98 '<(tcmalloc_dir)/src/central_freelist.h', 98 '<(tcmalloc_dir)/src/central_freelist.h',
99 '<(tcmalloc_dir)/src/common.cc', 99 '<(tcmalloc_dir)/src/common.cc',
100 '<(tcmalloc_dir)/src/common.h', 100 '<(tcmalloc_dir)/src/common.h',
101 '<(tcmalloc_dir)/src/debugallocation.cc', 101 '<(tcmalloc_dir)/src/debugallocation.cc',
102 '<(tcmalloc_dir)/src/deep-heap-profile.cc',
103 '<(tcmalloc_dir)/src/deep-heap-profile.h',
102 '<(tcmalloc_dir)/src/free_list.cc', 104 '<(tcmalloc_dir)/src/free_list.cc',
103 '<(tcmalloc_dir)/src/free_list.h', 105 '<(tcmalloc_dir)/src/free_list.h',
104 '<(tcmalloc_dir)/src/getpc.h', 106 '<(tcmalloc_dir)/src/getpc.h',
105 '<(tcmalloc_dir)/src/google/heap-checker.h', 107 '<(tcmalloc_dir)/src/google/heap-checker.h',
106 '<(tcmalloc_dir)/src/google/heap-profiler.h', 108 '<(tcmalloc_dir)/src/google/heap-profiler.h',
107 '<(tcmalloc_dir)/src/google/malloc_extension.h', 109 '<(tcmalloc_dir)/src/google/malloc_extension.h',
108 '<(tcmalloc_dir)/src/google/malloc_extension_c.h', 110 '<(tcmalloc_dir)/src/google/malloc_extension_c.h',
109 '<(tcmalloc_dir)/src/google/malloc_hook.h', 111 '<(tcmalloc_dir)/src/google/malloc_hook.h',
110 '<(tcmalloc_dir)/src/google/malloc_hook_c.h', 112 '<(tcmalloc_dir)/src/google/malloc_hook_c.h',
111 '<(tcmalloc_dir)/src/google/profiler.h', 113 '<(tcmalloc_dir)/src/google/profiler.h',
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 '$(VCInstallDir)lib', 439 '$(VCInstallDir)lib',
438 '<(SHARED_INTERMEDIATE_DIR)/allocator', 440 '<(SHARED_INTERMEDIATE_DIR)/allocator',
439 ], 441 ],
440 }, 442 },
441 ], 443 ],
442 }, 444 },
443 ], 445 ],
444 }], 446 }],
445 ], 447 ],
446 } 448 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698