Remove //tools/profile_chrome from Chromium repo

The previous CL (https://crrev.com/1726783002/) copied
//tools/profile_chrome to Catapult. This CL removes
//tools/profile_chrome in Chromium repo and updates the
dependency.

BUG=catapult:#1937
TBR=thakis@chromium.org

Review URL: https://codereview.chromium.org/1738563002

Cr-Original-Commit-Position: refs/heads/master@{#377733}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: bbc6b8838d109d972314f404953ebd1e862169de
This commit is contained in:
zhenw 2016-02-25 16:46:30 -08:00 коммит произвёл Commit bot
Родитель 304177bc3c
Коммит 7e631ea3a3
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -5,4 +5,5 @@
# found in the LICENSE file.
#
# Start / stop profiling in chrome.
exec $(dirname $0)/../../tools/profile_chrome.py $@
CATAPULT_DIR="$(dirname "$0")"/../../third_party/catapult
exec "${CATAPULT_DIR}"/systrace/bin/adb_profile_chrome "$@"

Просмотреть файл

@ -0,0 +1,9 @@
#!/bin/bash
#
# Copyright 2016 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.
#
# Start / stop profiling for chrome startup.
CATAPULT_DIR="$(dirname "$0")"/../../third_party/catapult
exec "${CATAPULT_DIR}"/systrace/bin/adb_profile_chrome_startup "$@"