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.
20var VndkMustUseVendorVariantList = []string{
21	"android.hardware.light-ndk_platform",
22	"android.hardware.identity-ndk_platform",
23	"android.hardware.nfc@1.2",
24	"android.hardware.power-ndk_platform",
25	"android.hardware.vibrator-ndk_platform",
26	"libbinder",
27	"libcrypto",
28	"libexpat",
29	"libgatekeeper",
30	"libgui",
31	"libhidlcache",
32	"libkeymaster_messages",
33	"libkeymaster_portable",
34	"libmedia_omx",
35	"libpuresoftkeymasterdevice",
36	"libselinux",
37	"libsoftkeymasterdevice",
38	"libsqlite",
39	"libssl",
40	"libstagefright_bufferpool@2.0",
41	"libstagefright_bufferqueue_helper",
42	"libstagefright_foundation",
43	"libstagefright_omx",
44	"libstagefright_omx_utils",
45	"libstagefright_xmlparser",
46	"libui",
47	"libxml2",
48}
49