• 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')
11BLINK_TOOLS_PATH = os.path.join(CHROMIUM_SRC_DIR, 'third_party', 'blink',
12                                'tools')
13
14if TYP_PATH not in sys.path:
15  sys.path.append(TYP_PATH)
16
17if BLINK_TOOLS_PATH not in sys.path:
18  sys.path.append(BLINK_TOOLS_PATH)
19