• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 The ANGLE Project Authors. All rights reserved.
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
8d = os.path.dirname
9THIS_DIR = d(os.path.abspath(__file__))
10ANGLE_SRC_DIR = d(d(d(d(THIS_DIR))))
11sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'build'))
12CHROMIUM_SRC_DIR = d(d(ANGLE_SRC_DIR))
13sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'build'))
14