|
From: <qh...@us...> - 2010-03-09 07:50:10
|
Revision: 1921
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=1921&view=rev
Author: qhuang8
Date: 2010-03-09 07:50:03 +0000 (Tue, 09 Mar 2010)
Log Message:
-----------
Do not show depex section for UEFI application or SMM core.
Modified Paths:
--------------
trunk/BaseTools/Source/Python/build/BuildReport.py
Modified: trunk/BaseTools/Source/Python/build/BuildReport.py
===================================================================
--- trunk/BaseTools/Source/Python/build/BuildReport.py 2010-03-09 07:01:38 UTC (rev 1920)
+++ trunk/BaseTools/Source/Python/build/BuildReport.py 2010-03-09 07:50:03 UTC (rev 1921)
@@ -255,7 +255,8 @@
ModuleType = M.ModuleType
if not ModuleType:
ModuleType = gComponentType2ModuleType.get(M.ComponentType, "")
- if ModuleType in ["SEC", "PEI_CORE", "DXE_CORE"]:
+
+ if ModuleType in ["SEC", "PEI_CORE", "DXE_CORE", "SMM_CORE", "UEFI_APPLICATION"]:
return
for Source in M.SourceFileList:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|