blob: 312ca1fe4588419ee0b476e8f33655daa6df2c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
svn checkout --force \
http://src.chromium.org/chrome/trunk/src/tools/deep_memory_profiler \
deep_memory_profiler
curl -o deep_memory_profiler/pprof \
http://src.chromium.org/chrome/trunk/src/third_party/tcmalloc/chromium/src/pprof
chmod a+x deep_memory_profiler/pprof
|