Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 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 | |
| 15 | package 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 Han | b8d3df8 | 2022-05-25 09:01:35 +0900 | [diff] [blame] | 20 | // Note that AIDL-generated modules must use vendor variants by default. |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 21 | var VndkMustUseVendorVariantList = []string{ |
Jiyong Park | b58719c | 2021-07-22 03:06:58 +0000 | [diff] [blame] | 22 | "android.hardware.nfc@1.2", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 23 | "libbinder", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 24 | "libcrypto", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 25 | "libexpat", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 26 | "libgatekeeper", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 27 | "libgui", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 28 | "libhidlcache", |
| 29 | "libkeymaster_messages", |
| 30 | "libkeymaster_portable", |
| 31 | "libmedia_omx", |
| 32 | "libpuresoftkeymasterdevice", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 33 | "libselinux", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 34 | "libsoftkeymasterdevice", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 35 | "libsqlite", |
| 36 | "libssl", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 37 | "libstagefright_bufferpool@2.0", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 38 | "libstagefright_bufferqueue_helper", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 39 | "libstagefright_foundation", |
| 40 | "libstagefright_omx", |
| 41 | "libstagefright_omx_utils", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 42 | "libstagefright_xmlparser", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 43 | "libui", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 44 | "libxml2", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 45 | } |