blob: 931b33acc79331f0e2ff88d5b8117a068a5ba65b [file] [log] [blame]
Vic Yangefd249e2018-11-12 20:19:56 -08001// 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.
20var VndkMustUseVendorVariantList = []string{
ChengYou Ho50ab3ff2020-12-30 04:02:56 +080021 "android.hardware.authsecret-unstable-ndk_platform",
Tim Joines5af27902020-01-06 14:30:53 -080022 "android.hardware.automotive.occupant_awareness-ndk_platform",
Yu-Han Yang613712c2020-09-17 20:11:42 -070023 "android.hardware.gnss-unstable-ndk_platform",
Yifan Hongcaaef4d2021-01-13 16:06:11 -080024 "android.hardware.health.storage-ndk_platform",
25 "android.hardware.health.storage-unstable-ndk_platform",
Ivailo Karamanolev1415cb82020-01-22 19:22:52 +010026 "android.hardware.light-ndk_platform",
David Zeuthenb71fe842020-02-12 10:02:20 -050027 "android.hardware.identity-ndk_platform",
Albal Tai7667b622020-02-19 06:17:51 +000028 "android.hardware.nfc@1.2",
Kalesh Singh7b63b262020-12-09 19:15:20 -050029 "android.hardware.memtrack-unstable-ndk_platform",
ChengYou Ho142b28a2021-01-01 12:50:37 +080030 "android.hardware.oemlock-unstable-ndk_platform",
Wei Wang6c016182020-01-14 17:31:10 -080031 "android.hardware.power-ndk_platform",
Benjamin Schwartz399394b2020-10-06 08:36:33 -070032 "android.hardware.power.stats-ndk_platform",
33 "android.hardware.power.stats-unstable-ndk_platform",
Steven Morelandde0bac52020-01-06 13:22:03 -080034 "android.hardware.rebootescrow-ndk_platform",
Shawn Willden7831d3e2020-12-11 06:06:36 -070035 "android.hardware.security.keymint-unstable-ndk_platform",
Steven Moreland8aca9022020-01-06 13:40:50 -080036 "android.hardware.vibrator-ndk_platform",
Janis Danisevskise8f655c2020-09-30 14:45:28 -070037 "android.system.keystore2-unstable-ndk_platform",
Vic Yangefd249e2018-11-12 20:19:56 -080038 "libbinder",
Vic Yangefd249e2018-11-12 20:19:56 -080039 "libcrypto",
Vic Yangefd249e2018-11-12 20:19:56 -080040 "libexpat",
Albal Tai7667b622020-02-19 06:17:51 +000041 "libgatekeeper",
Vic Yangefd249e2018-11-12 20:19:56 -080042 "libgui",
Albal Tai7667b622020-02-19 06:17:51 +000043 "libhidlcache",
44 "libkeymaster_messages",
45 "libkeymaster_portable",
46 "libmedia_omx",
47 "libpuresoftkeymasterdevice",
Vic Yangefd249e2018-11-12 20:19:56 -080048 "libselinux",
Albal Tai7667b622020-02-19 06:17:51 +000049 "libsoftkeymasterdevice",
Vic Yangefd249e2018-11-12 20:19:56 -080050 "libsqlite",
51 "libssl",
Albal Tai7667b622020-02-19 06:17:51 +000052 "libstagefright_bufferpool@2.0",
Vic Yangefd249e2018-11-12 20:19:56 -080053 "libstagefright_bufferqueue_helper",
Vic Yangefd249e2018-11-12 20:19:56 -080054 "libstagefright_foundation",
55 "libstagefright_omx",
56 "libstagefright_omx_utils",
Vic Yangefd249e2018-11-12 20:19:56 -080057 "libstagefright_xmlparser",
Vic Yangefd249e2018-11-12 20:19:56 -080058 "libui",
Vic Yangefd249e2018-11-12 20:19:56 -080059 "libxml2",
Vic Yangefd249e2018-11-12 20:19:56 -080060}