• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import os
6import sys
7
8CHROMIUM_SRC_DIR = os.path.join(os.path.dirname(__file__), '..', '..')
9TYP_PATH = os.path.join(CHROMIUM_SRC_DIR, 'third_party', 'catapult',
10                        'third_party', 'typ')
11
12if TYP_PATH not in sys.path:
13  sys.path.append(TYP_PATH)
14