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

Side by Side Diff: tools/telemetry/examples/benchmarks/__init__.py

Issue 1368533002: [Telemetry] Add an example for adding an end to end Telemetry benchmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Ethan comment message_loop -> v8 change Created 5 years, 1 month 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
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
5 import os
4 import sys 6 import sys
5 7 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
aiolos (Not reviewing) 2015/11/06 18:15:21 Since this is an example, could you include a comm
nednguyen 2015/11/06 18:36:15 Done.
6 from core import path_util
7
8 sys.path.append(path_util.GetTelemetryDir())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698