blob: 3b4df351fdb2b680fcfc75b209f1cd45b614f550 [file] [log] [blame]
# 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__),
'..', '..', '..', '..', 'tools', 'telemetry')
absolute_telemetry_path = os.path.abspath(telemetry_path)
sys.path.append(absolute_telemetry_path)
Init()