blob: 5cecbd6f5295dd832e474e1a222b3b5cdb8cd473 [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{
Ivailo Karamanolev876180c2020-01-22 19:22:52 +010021 "android.hardware.light-ndk_platform",
Vic Yangefd249e2018-11-12 20:19:56 -080022 "android.hardware.nfc@1.2",
Wei Wang6c016182020-01-14 17:31:10 -080023 "android.hardware.power-ndk_platform",
Steven Moreland9dbe4032020-01-06 13:40:50 -080024 "android.hardware.vibrator-ndk_platform",
Vic Yangefd249e2018-11-12 20:19:56 -080025 "libbinder",
Vic Yangefd249e2018-11-12 20:19:56 -080026 "libcrypto",
Vic Yangefd249e2018-11-12 20:19:56 -080027 "libexpat",
Vic Yangdb1cb102019-04-02 13:10:23 -070028 "libgatekeeper",
Vic Yangefd249e2018-11-12 20:19:56 -080029 "libgui",
30 "libhidlcache",
Vic Yangdb1cb102019-04-02 13:10:23 -070031 "libkeymaster_messages",
32 "libkeymaster_portable",
Vic Yang987ebeb2020-01-21 20:38:37 +000033 "libmedia_omx",
Vic Yangefd249e2018-11-12 20:19:56 -080034 "libpuresoftkeymasterdevice",
Vic Yangefd249e2018-11-12 20:19:56 -080035 "libselinux",
36 "libsoftkeymasterdevice",
37 "libsqlite",
38 "libssl",
Vic Yang8c38ecb2020-01-10 21:01:18 -080039 "libstagefright_bufferpool@2.0",
Vic Yangefd249e2018-11-12 20:19:56 -080040 "libstagefright_bufferqueue_helper",
Vic Yangefd249e2018-11-12 20:19:56 -080041 "libstagefright_foundation",
42 "libstagefright_omx",
43 "libstagefright_omx_utils",
Vic Yangefd249e2018-11-12 20:19:56 -080044 "libstagefright_xmlparser",
Vic Yangefd249e2018-11-12 20:19:56 -080045 "libui",
Vic Yangefd249e2018-11-12 20:19:56 -080046 "libxml2",
Vic Yangefd249e2018-11-12 20:19:56 -080047}