Commit | Line | Data |
---|---|---|
f51461c8 LG |
1 | ## @file\r |
2 | # This file is used to define common static strings used by INF/DEC/DSC files\r | |
3 | #\r | |
763e8edf | 4 | # Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>\r |
f51461c8 LG |
5 | # This program and the accompanying materials\r |
6 | # are licensed and made available under the terms and conditions of the BSD License\r | |
7 | # which accompanies this distribution. The full text of the license may be found at\r | |
8 | # http://opensource.org/licenses/bsd-license.php\r | |
9 | #\r | |
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
12 | \r | |
13 | import re\r | |
14 | \r | |
15 | gIsWindows = None\r | |
16 | \r | |
17 | gEdkCompatibilityPkg = "EdkCompatibilityPkg"\r | |
18 | gWorkspace = "."\r | |
19 | gEdkSource = "EdkCompatibilityPkg"\r | |
20 | gEfiSource = "."\r | |
21 | gEcpSource = "EdkCompatibilityPkg"\r | |
22 | \r | |
23 | gOptions = None\r | |
24 | gCaseInsensitive = False\r | |
25 | gAllFiles = None\r | |
f0dc69e6 | 26 | gCommand = None\r |
f51461c8 LG |
27 | \r |
28 | gGlobalDefines = {}\r | |
29 | gPlatformDefines = {}\r | |
30 | # PCD name and value pair for fixed at build and feature flag\r | |
31 | gPlatformPcds = {}\r | |
32 | # PCDs with type that are not fixed at build and feature flag\r | |
33 | gPlatformOtherPcds = {}\r | |
34 | gActivePlatform = None\r | |
35 | gCommandLineDefines = {}\r | |
36 | gEdkGlobal = {}\r | |
37 | gOverrideDir = {}\r | |
725cdb8f | 38 | gCommandMaxLength = 4096\r |
f51461c8 LG |
39 | # for debug trace purpose when problem occurs\r |
40 | gProcessingFile = ''\r | |
41 | gBuildingModule = ''\r | |
42 | \r | |
43 | ## Regular expression for matching macro used in DSC/DEC/INF file inclusion\r | |
44 | gMacroRefPattern = re.compile("\$\(([A-Z][_A-Z0-9]*)\)", re.UNICODE)\r | |
45 | gMacroDefPattern = re.compile("^(DEFINE|EDK_GLOBAL)[ \t]+")\r | |
46 | gMacroNamePattern = re.compile("^[A-Z][A-Z0-9_]*$")\r | |
47 | # C-style wide string pattern\r | |
48 | gWideStringPattern = re.compile('(\W|\A)L"')\r | |
49 | #\r | |
50 | # A global variable for whether current build in AutoGen phase or not.\r | |
51 | #\r | |
52 | gAutoGenPhase = False\r | |
53 | \r | |
54 | #\r | |
55 | # The Conf dir outside the workspace dir\r | |
56 | #\r | |
57 | gConfDirectory = ''\r | |
58 | \r | |
97058144 | 59 | gBuildDirectory = ''\r |
f51461c8 LG |
60 | #\r |
61 | # The relative default database file path\r | |
62 | #\r | |
63 | gDatabasePath = ".cache/build.db"\r | |
64 | \r | |
65 | #\r | |
66 | # Build flag for binary build\r | |
67 | #\r | |
68 | gIgnoreSource = False\r | |
69 | \r | |
70 | #\r | |
71 | # FDF parser\r | |
72 | #\r | |
73 | gFdfParser = None\r | |
97fa0ee9 YL |
74 | \r |
75 | #\r | |
76 | # If a module is built more than once with different PCDs or library classes\r | |
77 | # a temporary INF file with same content is created, the temporary file is removed\r | |
78 | # when build exits.\r | |
79 | #\r | |
80 | gTempInfs = []\r | |
81 | \r | |
763e8edf | 82 | BuildOptionPcd = []\r |
c8d07c5e | 83 | \r |
2a29017e YZ |
84 | #\r |
85 | # Mixed PCD name dict\r | |
86 | #\r | |
87 | MixedPcd = {}\r | |
88 | \r | |
c8d07c5e YZ |
89 | # Pcd name for the Pcd which used in the Conditional directives\r |
90 | gConditionalPcds = []\r | |
36d083ef YZ |
91 | \r |
92 | gUseHashCache = None\r | |
93 | gBinCacheDest = None\r | |
94 | gBinCacheSource = None\r | |
95 | gPlatformHash = None\r | |
96 | gPackageHash = {}\r | |
97 | gModuleHash = {}\r | |
37de70b7 | 98 | gEnableGenfdsMultiThread = False\r |