Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / infra / scripts / legacy / site_config / config.py
blob0108e659621f420d058fca49adfb9c90bbbbec7b
1 # Copyright (c) 2012 The Chromium 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.
5 """Declares a number of site-dependent variables for use by scripts.
6 """
8 import os
10 # DatabaseSetup was moved. Import it for backward compatibility
11 from common.chromium_utils import DatabaseSetup # pylint: disable=W0611
12 from config_bootstrap import config_private # pylint: disable=W0403,W0611
13 from config_bootstrap import Master # pylint: disable=W0403,W0611
15 SITE_CONFIG_PATH = os.path.abspath(os.path.dirname(__file__))
17 def SiteConfigPath():
18 return SITE_CONFIG_PATH