blob: dd612ce63f62f977ff8b34d91145b68bcd7c4e64 [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.
Jooyung Hanb8d3df82022-05-25 09:01:35 +090020// Note that AIDL-generated modules must use vendor variants by default.
Vic Yangefd249e2018-11-12 20:19:56 -080021var VndkMustUseVendorVariantList = []string{
Jiyong Parkb58719c2021-07-22 03:06:58 +000022 "android.hardware.nfc@1.2",
Vic Yangefd249e2018-11-12 20:19:56 -080023 "libbinder",
Vic Yangefd249e2018-11-12 20:19:56 -080024 "libcrypto",
Vic Yangefd249e2018-11-12 20:19:56 -080025 "libexpat",
Albal Tai7667b622020-02-19 06:17:51 +000026 "libgatekeeper",
Vic Yangefd249e2018-11-12 20:19:56 -080027 "libgui",
Albal Tai7667b622020-02-19 06:17:51 +000028 "libhidlcache",
29 "libkeymaster_messages",
30 "libkeymaster_portable",
31 "libmedia_omx",
32 "libpuresoftkeymasterdevice",
Vic Yangefd249e2018-11-12 20:19:56 -080033 "libselinux",
Albal Tai7667b622020-02-19 06:17:51 +000034 "libsoftkeymasterdevice",
Vic Yangefd249e2018-11-12 20:19:56 -080035 "libsqlite",
36 "libssl",
Albal Tai7667b622020-02-19 06:17:51 +000037 "libstagefright_bufferpool@2.0",
Vic Yangefd249e2018-11-12 20:19:56 -080038 "libstagefright_bufferqueue_helper",
Vic Yangefd249e2018-11-12 20:19:56 -080039 "libstagefright_foundation",
40 "libstagefright_omx",
41 "libstagefright_omx_utils",
Vic Yangefd249e2018-11-12 20:19:56 -080042 "libstagefright_xmlparser",
Vic Yangefd249e2018-11-12 20:19:56 -080043 "libui",
Vic Yangefd249e2018-11-12 20:19:56 -080044 "libxml2",
Vic Yangefd249e2018-11-12 20:19:56 -080045}