2018-11-13 05:19:56 +01:00
|
|
|
// Copyright 2019 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
// List of VNDK libraries that have different core variant and vendor variant.
|
|
|
|
// For these libraries, the vendor variants must be installed even if the device
|
|
|
|
// has VndkUseCoreVariant set.
|
2022-05-25 02:01:35 +02:00
|
|
|
// Note that AIDL-generated modules must use vendor variants by default.
|
2018-11-13 05:19:56 +01:00
|
|
|
var VndkMustUseVendorVariantList = []string{
|
2021-07-22 05:06:58 +02:00
|
|
|
"android.hardware.nfc@1.2",
|
2018-11-13 05:19:56 +01:00
|
|
|
"libbinder",
|
|
|
|
"libcrypto",
|
|
|
|
"libexpat",
|
2020-02-19 07:17:51 +01:00
|
|
|
"libgatekeeper",
|
2018-11-13 05:19:56 +01:00
|
|
|
"libgui",
|
2020-02-19 07:17:51 +01:00
|
|
|
"libhidlcache",
|
|
|
|
"libkeymaster_messages",
|
|
|
|
"libkeymaster_portable",
|
|
|
|
"libmedia_omx",
|
|
|
|
"libpuresoftkeymasterdevice",
|
2018-11-13 05:19:56 +01:00
|
|
|
"libselinux",
|
2020-02-19 07:17:51 +01:00
|
|
|
"libsoftkeymasterdevice",
|
2018-11-13 05:19:56 +01:00
|
|
|
"libsqlite",
|
|
|
|
"libssl",
|
2020-02-19 07:17:51 +01:00
|
|
|
"libstagefright_bufferpool@2.0",
|
2018-11-13 05:19:56 +01:00
|
|
|
"libstagefright_bufferqueue_helper",
|
|
|
|
"libstagefright_foundation",
|
|
|
|
"libstagefright_omx",
|
|
|
|
"libstagefright_omx_utils",
|
|
|
|
"libstagefright_xmlparser",
|
|
|
|
"libui",
|
|
|
|
"libxml2",
|
|
|
|
}
|