BaseTools: DataType - cleanup list constants
remove unused ones convert lists used for membership testing to sets use shared ones not local ones Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
committed by
Yonghong Zhu
parent
0c60e60b18
commit
eece4292ac
@ -901,7 +901,7 @@ class InfBuildData(ModuleBuildClassObject):
|
||||
Depex[Arch, ModuleType] = []
|
||||
DepexList = Depex[Arch, ModuleType]
|
||||
for Token in TokenList:
|
||||
if Token in DEPEX_SUPPORTED_OPCODE:
|
||||
if Token in DEPEX_SUPPORTED_OPCODE_SET:
|
||||
DepexList.append(Token)
|
||||
elif Token.endswith(".inf"): # module file name
|
||||
ModuleFile = os.path.normpath(Token)
|
||||
|
Reference in New Issue
Block a user