blob: 910690709428b43b541becdf818659c65b0422eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright (c) 2012 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.
"""A library for Chrome GPU test code."""
import os
import sys
def Init():
telemetry_path = os.path.join(os.path.dirname(__file__),
'..', '..', 'telemetry')
absolute_telemetry_path = os.path.abspath(telemetry_path)
sys.path.append(absolute_telemetry_path)
Init()
|