1// Copyright 2019 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 config 16 17// List of VNDK libraries that have different core variant and vendor variant. 18// For these libraries, the vendor variants must be installed even if the device 19// has VndkUseCoreVariant set. 20// TODO(b/150578172): clean up unstable and non-versioned aidl module 21var VndkMustUseVendorVariantList = []string{ 22 "android.hardware.authsecret-V1-ndk", 23 "android.hardware.authsecret-V1-ndk_platform", 24 "android.hardware.authsecret-ndk_platform", 25 "android.hardware.authsecret-unstable-ndk_platform", 26 "android.hardware.automotive.occupant_awareness-V1-ndk", 27 "android.hardware.automotive.occupant_awareness-V1-ndk_platform", 28 "android.hardware.automotive.occupant_awareness-ndk_platform", 29 "android.hardware.drm-V1-ndk", 30 "android.hardware.dumpstate-V1-ndk", 31 "android.hardware.gnss-V1-ndk", 32 "android.hardware.gnss-V1-ndk_platform", 33 "android.hardware.gnss-V2-ndk", 34 "android.hardware.gnss-ndk_platform", 35 "android.hardware.gnss-unstable-ndk_platform", 36 "android.hardware.health-V1-ndk", 37 "android.hardware.health-ndk", 38 "android.hardware.health.storage-V1-ndk", 39 "android.hardware.health.storage-V1-ndk_platform", 40 "android.hardware.health.storage-ndk_platform", 41 "android.hardware.health.storage-unstable-ndk_platform", 42 "android.hardware.identity-V2-ndk_platform", 43 "android.hardware.identity-V3-ndk", 44 "android.hardware.identity-V3-ndk_platform", 45 "android.hardware.identity-ndk_platform", 46 "android.hardware.light-V1-ndk", 47 "android.hardware.light-V1-ndk_platform", 48 "android.hardware.light-ndk_platform", 49 "android.hardware.memtrack-V1-ndk", 50 "android.hardware.memtrack-V1-ndk_platform", 51 "android.hardware.memtrack-ndk_platform", 52 "android.hardware.memtrack-unstable-ndk_platform", 53 "android.hardware.nfc@1.2", 54 "android.hardware.oemlock-V1-ndk", 55 "android.hardware.oemlock-V1-ndk_platform", 56 "android.hardware.oemlock-ndk_platform", 57 "android.hardware.oemlock-unstable-ndk_platform", 58 "android.hardware.power-V1-ndk_platform", 59 "android.hardware.power-V2-ndk", 60 "android.hardware.power-V2-ndk_platform", 61 "android.hardware.power-ndk_platform", 62 "android.hardware.power.stats-V1-ndk", 63 "android.hardware.power.stats-V1-ndk_platform", 64 "android.hardware.power.stats-ndk_platform", 65 "android.hardware.power.stats-unstable-ndk_platform", 66 "android.hardware.rebootescrow-V1-ndk", 67 "android.hardware.rebootescrow-V1-ndk_platform", 68 "android.hardware.rebootescrow-ndk_platform", 69 "android.hardware.radio-V1-ndk", 70 "android.hardware.radio-V1-ndk_platform", 71 "android.hardware.radio.config-V1-ndk", 72 "android.hardware.radio.config-V1-ndk_platform", 73 "android.hardware.radio.data-V1-ndk", 74 "android.hardware.radio.data-V1-ndk_platform", 75 "android.hardware.radio.messaging-V1-ndk", 76 "android.hardware.radio.messaging-V1-ndk_platform", 77 "android.hardware.radio.modem-V1-ndk", 78 "android.hardware.radio.modem-V1-ndk_platform", 79 "android.hardware.radio.network-V1-ndk", 80 "android.hardware.radio.network-V1-ndk_platform", 81 "android.hardware.radio.sim-V1-ndk", 82 "android.hardware.radio.sim-V1-ndk_platform", 83 "android.hardware.radio.voice-V1-ndk", 84 "android.hardware.radio.voice-V1-ndk_platform", 85 "android.hardware.security.keymint-V1-ndk", 86 "android.hardware.security.keymint-V1-ndk_platform", 87 "android.hardware.security.keymint-ndk_platform", 88 "android.hardware.security.keymint-unstable-ndk_platform", 89 "android.hardware.security.secureclock-V1-ndk", 90 "android.hardware.security.secureclock-V1-ndk_platform", 91 "android.hardware.security.secureclock-ndk_platform", 92 "android.hardware.security.secureclock-unstable-ndk_platform", 93 "android.hardware.security.sharedsecret-V1-ndk", 94 "android.hardware.security.sharedsecret-V1-ndk_platform", 95 "android.hardware.security.sharedsecret-ndk_platform", 96 "android.hardware.security.sharedsecret-unstable-ndk_platform", 97 "android.hardware.sensors-V1-ndk", 98 "android.hardware.soundtrigger3-V1-ndk", 99 "android.hardware.soundtrigger3-V1-ndk_platform", 100 "android.hardware.uwb-V1-ndk", 101 "android.hardware.uwb-V1-ndk_platform", 102 "android.hardware.vibrator-V1-ndk_platform", 103 "android.hardware.vibrator-V2-ndk", 104 "android.hardware.vibrator-V2-ndk_platform", 105 "android.hardware.vibrator-ndk_platform", 106 "android.hardware.weaver-V1-ndk", 107 "android.hardware.weaver-V1-ndk_platform", 108 "android.hardware.weaver-ndk_platform", 109 "android.hardware.weaver-unstable-ndk_platform", 110 "android.system.suspend-V1-ndk", 111 "android.system.keystore2-V1-ndk", 112 "android.se.omapi-V1-ndk_platform", 113 "android.se.omapi-ndk_platform", 114 "android.se.omapi-unstable-ndk_platform", 115 "android.hardware.wifi.hostapd-V1-ndk", 116 "android.hardware.wifi.hostapd-V1-ndk_platform", 117 "android.hardware.wifi.supplicant-V1-ndk", 118 "android.system.keystore2-V1-ndk_platform", 119 "android.system.keystore2-ndk_platform", 120 "android.system.keystore2-unstable-ndk_platform", 121 "android.system.suspend-V1-ndk", 122 "android.system.suspend-V1-ndk_platform", 123 "libbinder", 124 "libcrypto", 125 "libexpat", 126 "libgatekeeper", 127 "libgui", 128 "libhidlcache", 129 "libkeymaster_messages", 130 "libkeymaster_portable", 131 "libmedia_omx", 132 "libpuresoftkeymasterdevice", 133 "libselinux", 134 "libsoftkeymasterdevice", 135 "libsqlite", 136 "libssl", 137 "libstagefright_bufferpool@2.0", 138 "libstagefright_bufferqueue_helper", 139 "libstagefright_foundation", 140 "libstagefright_omx", 141 "libstagefright_omx_utils", 142 "libstagefright_xmlparser", 143 "libui", 144 "libxml2", 145} 146