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

Side by Side Diff: tools/telemetry_auto/telemetry_auto/__init__.py

Issue 11412238: Proof of concept for running extension API stack through dev tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 """A library for Chrome GPU test code."""
5 import os 4 import os
6 import sys 5 import sys
7 6
8 def Init(): 7 def _Init():
9 telemetry_path = os.path.join(os.path.dirname(__file__), 8 telemetry_path = os.path.join(os.path.dirname(__file__),
10 '..', '..', 'telemetry') 9 '..', '..', 'telemetry')
11 absolute_telemetry_path = os.path.abspath(telemetry_path) 10 absolute_telemetry_path = os.path.abspath(telemetry_path)
12 sys.path.append(absolute_telemetry_path) 11 sys.path.append(absolute_telemetry_path)
13 12
14 Init() 13 _Init()
14
15 from telemetry_auto.oobe_page import OobePage
OLDNEW
« no previous file with comments | « tools/telemetry_auto/examples/login_test.py ('k') | tools/telemetry_auto/telemetry_auto/oobe_page.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698