15 lines
424 B
Python
15 lines
424 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2019 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""Generic constants used accross modules.
|
|
"""
|
|
|
|
__author__ = 'shenhan@google.com (Han Shen)'
|
|
|
|
MOUNTED_TOOLCHAIN_ROOT = '/usr/local/toolchain_root'
|
|
|
|
# Root directory for night testing run.
|
|
CROSTC_WORKSPACE = '/usr/local/google/crostc'
|