1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 2014 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.
# This file specifies dependencies required to bootstrap Telemetry. It is in a
# minimal version of the format used by other DEPS files that gclient can read,
# but it should only be used to bootstrap Telemetry *outside* of a normal
# Chrome checkout. In particular, the normal 'value' part of the python
# dict is not used and hence does not contain real URLs for the repos.
deps = {
"src/tools/telemetry": "",
"src/build/android": "",
"src/build/util": "",
"src/chrome/test/data/extensions/profiles": "",
"src/chrome/test/data/perf/canvas_bench": "",
"src/third_party/android_testrunner": "",
"src/third_party/android_tools/sdk/platform-tools": "",
"src/third_party/chromite/ssh_keys": "",
"src/third_party/flot/jquery.flot.min.js": "",
"src/third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js": "",
"src/third_party/WebKit/PerformanceTests/resources/statistics.js": "",
"src/third_party/webpagereplay": "",
"src/third_party/trace-viewer": "",
"src/third_party/typ": "",
"src/tools/crx_id": "",
"src/tools/perf/unit-info.json": "",
}
|