2009-07-17 09:10:31 +00:00
|
|
|
## @file
|
|
|
|
|
# This file is used to save global datas used by ECC tool
|
|
|
|
|
#
|
2018-07-05 17:40:04 +08:00
|
|
|
# Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-03 16:03:11 -07:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2009-07-17 09:10:31 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
|
# Import Modules
|
|
|
|
|
#
|
2014-08-15 03:06:48 +00:00
|
|
|
import Common.LongFilePathOs as os
|
2009-07-17 09:10:31 +00:00
|
|
|
|
|
|
|
|
gWorkspace = ''
|
|
|
|
|
gTarget = ''
|
|
|
|
|
gConfig = None
|
|
|
|
|
gDb = None
|
|
|
|
|
gIdentifierTableList = []
|
2010-09-06 01:58:00 +00:00
|
|
|
gCFileList = []
|
|
|
|
|
gHFileList = []
|
2014-08-25 01:16:34 +00:00
|
|
|
gUFileList = []
|
2018-07-05 17:40:04 +08:00
|
|
|
gException = None
|