diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-02 15:43:44 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-02 15:43:44 +0000 |
commit | 11f503343626300c14b436e6689b46c7ba15af82 (patch) | |
tree | fc4d9ce516f581680aa67b4503838015f4e43c6f /Tools/XMLSchema | |
parent | 5d7a9b83e144ba855c14d50f4fd31317d7b5e0c5 (diff) | |
download | edk2-platforms-11f503343626300c14b436e6689b46c7ba15af82.tar.xz |
Added the OPTIONAL NonProcessedFiles element to MSA section. Sub-element is Filename with no attributes.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1650 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/XMLSchema')
-rw-r--r-- | Tools/XMLSchema/FrameworkDataElements.xsd | 7 | ||||
-rw-r--r-- | Tools/XMLSchema/SurfaceArea.xsd | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Tools/XMLSchema/FrameworkDataElements.xsd b/Tools/XMLSchema/FrameworkDataElements.xsd index a900080f4b..f0adef7780 100644 --- a/Tools/XMLSchema/FrameworkDataElements.xsd +++ b/Tools/XMLSchema/FrameworkDataElements.xsd @@ -529,6 +529,13 @@ </xs:sequence>
</xs:complexType>
</xs:element>
+ <xs:element name="NonProcessedFiles">
+ <xs:complexType>
+ <xs:sequence minOccurs="1" maxOccurs="unbounded">
+ <xs:element name="Filename" type="PathAndFilename"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
<xs:element name="Option">
<!-- This element is used to store flags from the Tools -->
<xs:complexType>
diff --git a/Tools/XMLSchema/SurfaceArea.xsd b/Tools/XMLSchema/SurfaceArea.xsd index 6ce32d20f0..d79e574ee0 100644 --- a/Tools/XMLSchema/SurfaceArea.xsd +++ b/Tools/XMLSchema/SurfaceArea.xsd @@ -58,6 +58,7 @@ <xs:element minOccurs="1" maxOccurs="1" ref="ModuleDefinitions"/>
<xs:element minOccurs="0" maxOccurs="1" ref="LibraryClassDefinitions"/>
<xs:element minOccurs="0" maxOccurs="1" ref="SourceFiles"/>
+ <xs:element minOccurs="0" maxOccurs="1" ref="NonProcessedFiles"/>
<xs:element minOccurs="0" maxOccurs="1" ref="PackageDependencies"/>
<xs:element minOccurs="0" maxOccurs="1" ref="Protocols"/>
<xs:element minOccurs="0" maxOccurs="1" ref="Events"/>
|