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-unstable-ndk_platform", 23 "android.hardware.authsecret-ndk_platform", 24 "android.hardware.authsecret-V1-ndk_platform", 25 "android.hardware.automotive.occupant_awareness-ndk_platform", 26 "android.hardware.automotive.occupant_awareness-V1-ndk_platform", 27 "android.hardware.gnss-unstable-ndk_platform", 28 "android.hardware.gnss-ndk_platform", 29 "android.hardware.gnss-V1-ndk_platform", 30 "android.hardware.health.storage-V1-ndk_platform", 31 "android.hardware.health.storage-ndk_platform", 32 "android.hardware.health.storage-unstable-ndk_platform", 33 "android.hardware.light-V1-ndk_platform", 34 "android.hardware.light-ndk_platform", 35 "android.hardware.identity-V2-ndk_platform", 36 "android.hardware.identity-V3-ndk_platform", 37 "android.hardware.identity-ndk_platform", 38 "android.hardware.nfc@1.2", 39 "android.hardware.memtrack-V1-ndk_platform", 40 "android.hardware.memtrack-ndk_platform", 41 "android.hardware.memtrack-unstable-ndk_platform", 42 "android.hardware.oemlock-V1-ndk_platform", 43 "android.hardware.oemlock-ndk_platform", 44 "android.hardware.oemlock-unstable-ndk_platform", 45 "android.hardware.power-V1-ndk_platform", 46 "android.hardware.power-V2-ndk_platform", 47 "android.hardware.power-ndk_platform", 48 "android.hardware.power.stats-V1-ndk_platform", 49 "android.hardware.power.stats-ndk_platform", 50 "android.hardware.power.stats-unstable-ndk_platform", 51 "android.hardware.rebootescrow-V1-ndk_platform", 52 "android.hardware.rebootescrow-ndk_platform", 53 "android.hardware.security.keymint-V1-ndk_platform", 54 "android.hardware.security.keymint-ndk_platform", 55 "android.hardware.security.keymint-unstable-ndk_platform", 56 "android.hardware.security.secureclock-V1-ndk_platform", 57 "android.hardware.security.secureclock-unstable-ndk_platform", 58 "android.hardware.security.secureclock-ndk_platform", 59 "android.hardware.security.sharedsecret-V1-ndk_platform", 60 "android.hardware.security.sharedsecret-ndk_platform", 61 "android.hardware.security.sharedsecret-unstable-ndk_platform", 62 "android.hardware.vibrator-V1-ndk_platform", 63 "android.hardware.vibrator-V2-ndk_platform", 64 "android.hardware.vibrator-ndk_platform", 65 "android.hardware.weaver-V1-ndk_platform", 66 "android.hardware.weaver-ndk_platform", 67 "android.hardware.weaver-unstable-ndk_platform", 68 "android.system.keystore2-V1-ndk_platform", 69 "android.system.keystore2-ndk_platform", 70 "android.system.keystore2-unstable-ndk_platform", 71 "libbinder", 72 "libcrypto", 73 "libexpat", 74 "libgatekeeper", 75 "libgui", 76 "libhidlcache", 77 "libkeymaster_messages", 78 "libkeymaster_portable", 79 "libmedia_omx", 80 "libpuresoftkeymasterdevice", 81 "libselinux", 82 "libsoftkeymasterdevice", 83 "libsqlite", 84 "libssl", 85 "libstagefright_bufferpool@2.0", 86 "libstagefright_bufferqueue_helper", 87 "libstagefright_foundation", 88 "libstagefright_omx", 89 "libstagefright_omx_utils", 90 "libstagefright_xmlparser", 91 "libui", 92 "libxml2", 93} 94