Chromium Code Reviews| Index: tools/perf/fetch_benchmark_deps.py |
| diff --git a/tools/perf/fetch_benchmark_deps.py b/tools/perf/fetch_benchmark_deps.py |
| index ac6bd815abbe871c15b09bfd8f53dc81c2b8dea0..b904d2169c68514cf6addaa662e8466eebbdfc88 100755 |
| --- a/tools/perf/fetch_benchmark_deps.py |
| +++ b/tools/perf/fetch_benchmark_deps.py |
| @@ -8,9 +8,11 @@ |
| import os |
| import sys |
| -sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'telemetry')) |
| +from chrome_telemetry_build import chromium_config |
| +sys.path.insert(1, chromium_config.GetTelemetryDir()) |
| from catapult_base import cloud_storage |
| + |
|
aiolos (Not reviewing)
2016/01/15 00:33:04
catapult_base and telemetry are arguably the same
eakuefner
2016/01/19 17:21:18
Outside of Catapult, these are all just third-part
|
| from telemetry import benchmark_runner |