1# Copyright 2021 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"""Constants for unexpected pass finders.""" 5 6import os 7 8CHROMIUM_SRC_DIR = os.path.realpath( 9 os.path.join(os.path.dirname(__file__), '..', '..')) 10SRC_INTERNAL_DIR = os.path.realpath( 11 os.path.join(CHROMIUM_SRC_DIR, 'internal')) 12 13 14# pylint: disable=useless-object-inheritance 15class BuilderTypes(object): 16 CI = 'ci' 17 TRY = 'try' 18