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

Side by Side Diff: tools/chrome_proxy/chrome_proxy_config.py

Issue 1582793006: [Telemetry] Update all clients to use chromium_config.GetTelemetryDir() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more rebase Created 4 years, 11 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
« no previous file with comments | « tools/bisect-manual-test.py ('k') | tools/chrome_proxy/run_benchmark » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import os 5 import os
6 import sys 6 import sys
7 7
8 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'perf')) 8 sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'perf'))
9 9
10 from chrome_telemetry_build import chromium_config 10 from chrome_telemetry_build import chromium_config
11 11
12 TELEMETRY_DIR = chromium_config.GetTelemetryDir()
13
12 _top_level_dir = os.path.dirname(os.path.realpath(__file__)) 14 _top_level_dir = os.path.dirname(os.path.realpath(__file__))
13 15
14 def Config(benchmark_subdirs): 16 def Config(benchmark_subdirs):
15 return chromium_config.ChromiumConfig( 17 return chromium_config.ChromiumConfig(
16 top_level_dir=_top_level_dir, 18 top_level_dir=_top_level_dir,
17 benchmark_dirs=[os.path.join(_top_level_dir, subdir) 19 benchmark_dirs=[os.path.join(_top_level_dir, subdir)
18 for subdir in benchmark_subdirs]) 20 for subdir in benchmark_subdirs])
OLDNEW
« no previous file with comments | « tools/bisect-manual-test.py ('k') | tools/chrome_proxy/run_benchmark » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698