123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Copyright (C) 2019 The Android Open Source Project
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <!-- TODO: define a targetNamespace. Note that it will break retrocompatibility -->
- <xs:schema version="2.0"
- elementFormDefault="qualified"
- attributeFormDefault="unqualified"
- xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="manifest">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="hal" type="hal" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element name="sepolicy" type="sepolicy" minOccurs="0"/>
- <xs:element name="kernel" type="kernel" minOccurs="0"/>
- <xs:element name="vndk" type="vndk" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element name="vendor-ndk" type="vendor-ndk" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element name="system-sdk" type="system-sdk" minOccurs="0"/>
- </xs:sequence>
- <xs:attribute name="version" type="xs:string" use="required"/>
- <xs:attribute name="type" type="xs:string" use="required"/>
- <xs:attribute name="target-level" type="xs:string"/>
- </xs:complexType>
- </xs:element>
- <xs:complexType name="hal">
- <xs:sequence>
- <xs:element name="name" type="xs:string"/>
- <xs:element name="transport">
- <xs:complexType>
- <xs:simpleContent>
- <xs:extension base="xs:string">
- <xs:attribute name="arch" type="xs:string"/>
- </xs:extension>
- </xs:simpleContent>
- </xs:complexType>
- </xs:element>
- <xs:element name="version" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element name="interface" type="interface" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element name="fqname" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="format" type="xs:string"/>
- <xs:attribute name="override" type="xs:string"/>
- </xs:complexType>
- <xs:complexType name="interface">
- <xs:sequence>
- <xs:element name="name" type="xs:string"/>
- <xs:element name="instance" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="sepolicy">
- <xs:sequence>
- <xs:element name="version" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="vndk">
- <xs:sequence>
- <xs:element name="version" type="xs:string"/>
- <xs:element name="library" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="vendor-ndk">
- <xs:sequence>
- <xs:element name="version" type="xs:string"/>
- <xs:element name="library" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="system-sdk">
- <xs:sequence>
- <xs:element name="version" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="kernel">
- <xs:sequence>
- <xs:element name="config" minOccurs="0" maxOccurs="unbounded">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="key" type="xs:string"/>
- <xs:element name="value" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- <xs:attribute name="version" type="xs:string"/>
- </xs:complexType>
- </xs:schema>
|