• 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__), '..', '..')
9sys.path.append(os.path.join(CHROMIUM_SRC_DIR, 'content', 'test', 'gpu'))
10TYP_PATH = os.path.join(CHROMIUM_SRC_DIR, 'third_party', 'catapult',
11                        'third_party', 'typ')
12
13if TYP_PATH not in sys.path:
14  sys.path.append(TYP_PATH)
15