1// Copyright 2018 Google Inc. All rights reserved. 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15package { 16 default_applicable_licenses: ["system_libhidl_license"], 17} 18 19vintf_data { 20 name: "vendor_compatibility_matrix.xml", 21 type: "device_cm", 22 filename: "compatibility_matrix.xml", 23 vendor: true, 24} 25 26vintf_data { 27 name: "system_manifest.xml", 28 type: "system_manifest", 29 filename: "manifest.xml", 30} 31 32vintf_data { 33 name: "product_manifest.xml", 34 type: "product_manifest", 35 filename: "manifest.xml", 36 product_specific: true, 37} 38 39vintf_data { 40 name: "system_ext_manifest.xml", 41 type: "system_ext_manifest", 42 filename: "manifest.xml", 43 system_ext_specific: true, 44} 45 46// Device Manifest 47vintf_data { 48 name: "vendor_manifest.xml", 49 type: "vendor_manifest", 50 filename: "manifest.xml", 51 vendor: true, 52} 53 54// Odm Manifest 55vintf_data { 56 name: "odm_manifest.xml", 57 type: "odm_manifest", 58 filename: "manifest.xml", 59 device_specific: true, 60} 61