summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/common/py_trace_event/py_trace_event/__init__.py
blob: 7337ddeff3929f74137395a2f2bc9f8b1babc69d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2016 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.
from __future__ import absolute_import
import os
import sys

SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
PY_UTILS = os.path.abspath(os.path.join(SCRIPT_DIR, '..', '..', 'py_utils'))
PROTOBUF = os.path.abspath(os.path.join(
    SCRIPT_DIR, '..', 'third_party', 'protobuf'))
sys.path.append(PY_UTILS)
sys.path.append(PROTOBUF)