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. |
| 20 | var VndkMustUseVendorVariantList = []string{ |
Tim Joines | 5af2790 | 2020-01-06 14:30:53 -0800 | [diff] [blame] | 21 | "android.hardware.automotive.occupant_awareness-ndk_platform", |
Ivailo Karamanolev | 1415cb8 | 2020-01-22 19:22:52 +0100 | [diff] [blame] | 22 | "android.hardware.light-ndk_platform", |
David Zeuthen | b71fe84 | 2020-02-12 10:02:20 -0500 | [diff] [blame] | 23 | "android.hardware.identity-ndk_platform", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 24 | "android.hardware.nfc@1.2", |
Wei Wang | 6c01618 | 2020-01-14 17:31:10 -0800 | [diff] [blame] | 25 | "android.hardware.power-ndk_platform", |
Steven Moreland | de0bac5 | 2020-01-06 13:22:03 -0800 | [diff] [blame] | 26 | "android.hardware.rebootescrow-ndk_platform", |
Steven Moreland | 8aca902 | 2020-01-06 13:40:50 -0800 | [diff] [blame] | 27 | "android.hardware.vibrator-ndk_platform", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 28 | "libbinder", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 29 | "libcrypto", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 30 | "libexpat", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 31 | "libgatekeeper", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 32 | "libgui", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 33 | "libhidlcache", |
| 34 | "libkeymaster_messages", |
| 35 | "libkeymaster_portable", |
| 36 | "libmedia_omx", |
| 37 | "libpuresoftkeymasterdevice", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 38 | "libselinux", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 39 | "libsoftkeymasterdevice", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 40 | "libsqlite", |
| 41 | "libssl", |
Albal Tai | 7667b62 | 2020-02-19 06:17:51 +0000 | [diff] [blame] | 42 | "libstagefright_bufferpool@2.0", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 43 | "libstagefright_bufferqueue_helper", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 44 | "libstagefright_foundation", |
| 45 | "libstagefright_omx", |
| 46 | "libstagefright_omx_utils", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 47 | "libstagefright_xmlparser", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 48 | "libui", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 49 | "libxml2", |
Vic Yang | efd249e | 2018-11-12 20:19:56 -0800 | [diff] [blame] | 50 | } |