From e651d06c5ed167e706e2dbe122ec0953a54033f3 Mon Sep 17 00:00:00 2001 From: Liming Gao Date: Fri, 22 Dec 2017 20:07:54 +0800 Subject: BaseTools: Report Structure PCD value and SKU, DefaultStore info https://bugzilla.tianocore.org/show_bug.cgi?id=706 Add Structure PCD support for Build report. Structure PCD field value described in DEC/DSC will be display in build report. And, PCD value for each SKU and Default store will also be shown in build report. Contributed-under: TianoCore Contribution Agreement 1.1 Reviewed-by: Yonghong Zhu Reviewed-by: Liming Gao --- BaseTools/Source/Python/Common/GlobalData.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'BaseTools/Source/Python/Common/GlobalData.py') diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py index 57ba0546ed..f7d4d577f9 100644 --- a/BaseTools/Source/Python/Common/GlobalData.py +++ b/BaseTools/Source/Python/Common/GlobalData.py @@ -24,6 +24,7 @@ gOptions = None gCaseInsensitive = False gAllFiles = None gCommand = None +gSKUID_CMD = None gGlobalDefines = {} gPlatformDefines = {} @@ -39,6 +40,8 @@ gCommandMaxLength = 4096 # for debug trace purpose when problem occurs gProcessingFile = '' gBuildingModule = '' +gSkuids = [] +gDefaultStores = [] ## Regular expression for matching macro used in DSC/DEC/INF file inclusion gMacroRefPattern = re.compile("\$\(([A-Z][_A-Z0-9]*)\)", re.UNICODE) -- cgit v1.2.3