micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 1 | # Copyright (C) 2016 The CyanogenMod Project |
| 2 | # Copyright (C) 2019 The OmniRom Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | # |
| 17 | # This file is the build configuration for a full Android |
| 18 | # build for grouper hardware. This cleanly combines a set of |
| 19 | # device-specific aspects (drivers) with a device-agnostic |
| 20 | # product configuration (apps). |
| 21 | # |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 22 | $(call inherit-product, vendor/asus/zenfone8/zenfone8-vendor.mk) |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 23 | |
David Ng | 3a95e4b | 2020-06-16 18:07:14 -0700 | [diff] [blame] | 24 | # fusefs / disable sdcardfs usage |
| 25 | $(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk) |
| 26 | |
micky387 | daa4c6b | 2021-05-28 14:44:38 +0200 | [diff] [blame] | 27 | # Include GSI keys |
| 28 | $(call inherit-product, $(SRC_TARGET_DIR)/product/gsi_keys.mk) |
| 29 | |
micky387 | 536715a | 2021-05-30 02:32:41 +0200 | [diff] [blame] | 30 | # Enable updating of APEXes |
| 31 | $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) |
| 32 | |
micky387 | a8d9618 | 2019-06-11 13:36:14 +0200 | [diff] [blame] | 33 | # Overlays |
| 34 | DEVICE_PACKAGE_OVERLAYS += \ |
micky387 | 68ec999 | 2019-12-28 13:35:00 +0100 | [diff] [blame] | 35 | $(LOCAL_PATH)/overlay \ |
| 36 | vendor/omni/overlay/CarrierConfig |
micky387 | a8d9618 | 2019-06-11 13:36:14 +0200 | [diff] [blame] | 37 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 38 | PRODUCT_PACKAGES += \ |
| 39 | aptxalsOverlay \ |
| 40 | FrameworksResOverlay \ |
| 41 | FrameworksResVendor \ |
micky387 | a243c79 | 2022-02-08 19:26:00 +0100 | [diff] [blame^] | 42 | SettingsProviderOverlay \ |
| 43 | SystemUIOverlay \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 44 | TeleServiceOverlay \ |
| 45 | TetheringOverlay \ |
| 46 | WifiOverlay |
micky387 | 7564a9b | 2020-12-30 22:14:37 +0100 | [diff] [blame] | 47 | |
micky387 | 4eedc68 | 2019-06-11 02:29:28 +0200 | [diff] [blame] | 48 | # A/B |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 49 | ENABLE_VIRTUAL_AB := true |
micky387 | f24bf3b | 2021-05-28 08:01:58 +0200 | [diff] [blame] | 50 | $(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk) |
micky387 | 4eedc68 | 2019-06-11 02:29:28 +0200 | [diff] [blame] | 51 | |
| 52 | AB_OTA_POSTINSTALL_CONFIG += \ |
| 53 | RUN_POSTINSTALL_system=true \ |
Marko Man | ac93137 | 2020-03-14 21:02:38 +0100 | [diff] [blame] | 54 | POSTINSTALL_PATH_system=system/bin/omnipreopt_script \ |
micky387 | 4eedc68 | 2019-06-11 02:29:28 +0200 | [diff] [blame] | 55 | FILESYSTEM_TYPE_system=ext4 \ |
| 56 | POSTINSTALL_OPTIONAL_system=true |
| 57 | |
micky387 | 2640c33 | 2021-05-28 14:56:39 +0200 | [diff] [blame] | 58 | AB_OTA_POSTINSTALL_CONFIG += \ |
| 59 | RUN_POSTINSTALL_vendor=true \ |
| 60 | POSTINSTALL_PATH_vendor=bin/checkpoint_gc \ |
| 61 | FILESYSTEM_TYPE_vendor=ext4 \ |
| 62 | POSTINSTALL_OPTIONAL_vendor=true |
| 63 | |
Marko Man | ac93137 | 2020-03-14 21:02:38 +0100 | [diff] [blame] | 64 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 65 | checkpoint_gc \ |
Marko Man | ac93137 | 2020-03-14 21:02:38 +0100 | [diff] [blame] | 66 | omnipreopt_script |
| 67 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 68 | # Adreno |
| 69 | PRODUCT_COPY_FILES += \ |
| 70 | frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_1.xml |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 71 | |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 72 | # ANT+ |
| 73 | PRODUCT_PACKAGES += \ |
| 74 | AntHalService |
| 75 | |
micky387 | 82dbd1a | 2019-09-17 08:11:02 +0200 | [diff] [blame] | 76 | # Api |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 77 | PRODUCT_SHIPPING_API_LEVEL := 30 |
micky387 | 82dbd1a | 2019-09-17 08:11:02 +0200 | [diff] [blame] | 78 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 79 | # Atrace |
| 80 | PRODUCT_PACKAGES += \ |
| 81 | android.hardware.atrace@1.0-service |
| 82 | |
| 83 | # Audio |
| 84 | PRODUCT_PACKAGES += \ |
| 85 | android.hardware.audio@6.0-impl \ |
| 86 | android.hardware.audio.effect@6.0-impl \ |
| 87 | android.hardware.audio.service |
| 88 | |
LuK1337 | 6913595 | 2018-09-09 17:39:16 +0200 | [diff] [blame] | 89 | PRODUCT_COPY_FILES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 90 | $(LOCAL_PATH)/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/audio_policy_configuration.xml \ |
| 91 | $(LOCAL_PATH)/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/ZS590KS/audio_policy_configuration_ZS590KS.xml \ |
| 92 | $(LOCAL_PATH)/audio/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/ZS590KS/audio_policy_volumes_ZS590KS.xml \ |
| 93 | $(LOCAL_PATH)/audio/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml |
| 94 | |
| 95 | # Authsecret |
| 96 | PRODUCT_PACKAGES += \ |
| 97 | android.hardware.authsecret@1.0.vendor |
LuK1337 | 6913595 | 2018-09-09 17:39:16 +0200 | [diff] [blame] | 98 | |
micky387 | 1f4e8bf | 2020-12-30 22:02:51 +0100 | [diff] [blame] | 99 | # Bluetooth |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 100 | PRODUCT_PACKAGES += \ |
| 101 | android.hardware.bluetooth@1.0.vendor |
| 102 | |
micky387 | 747a36a | 2022-01-06 23:15:58 +0100 | [diff] [blame] | 103 | #PRODUCT_SOONG_NAMESPACES += vendor/qcom/opensource/commonsys/packages/apps/Bluetooth |
| 104 | #PRODUCT_SOONG_NAMESPACES += vendor/qcom/opensource/commonsys/system/bt/conf |
micky387 | 1f4e8bf | 2020-12-30 22:02:51 +0100 | [diff] [blame] | 105 | |
micky387 | 747a36a | 2022-01-06 23:15:58 +0100 | [diff] [blame] | 106 | #PRODUCT_PACKAGE_OVERLAYS += vendor/qcom/opensource/commonsys-intf/bluetooth/overlay/qva |
micky387 | 1f4e8bf | 2020-12-30 22:02:51 +0100 | [diff] [blame] | 107 | |
micky387 | 747a36a | 2022-01-06 23:15:58 +0100 | [diff] [blame] | 108 | #PRODUCT_PACKAGES += BluetoothExt |
| 109 | #PRODUCT_PACKAGES += libbluetooth_qti |
| 110 | #PRODUCT_PACKAGES += vendor.qti.hardware.bluetooth_dun-V1.0-java |
micky387 | 1f4e8bf | 2020-12-30 22:02:51 +0100 | [diff] [blame] | 111 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 112 | # Biometric |
| 113 | PRODUCT_PACKAGES += \ |
Vishalcj17 | 5d33e34 | 2021-10-28 16:03:48 +0900 | [diff] [blame] | 114 | android.hardware.biometrics.fingerprint@2.3-service.asus_lahaina |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 115 | |
micky387 | e96abca | 2019-06-11 02:35:20 +0200 | [diff] [blame] | 116 | # Boot control |
Hridya Valsaraju | 9bf1814 | 2018-08-21 21:22:37 -0700 | [diff] [blame] | 117 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 118 | android.hardware.boot@1.1-impl-qti \ |
micky387 | ec5db57 | 2021-06-10 19:46:35 +0200 | [diff] [blame] | 119 | android.hardware.boot@1.1-impl-qti.recovery \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 120 | android.hardware.boot@1.1-service |
Hridya Valsaraju | 9bf1814 | 2018-08-21 21:22:37 -0700 | [diff] [blame] | 121 | |
micky387 | e96abca | 2019-06-11 02:35:20 +0200 | [diff] [blame] | 122 | PRODUCT_PACKAGES_DEBUG += \ |
| 123 | bootctl |
| 124 | |
micky387 | 95b3a99 | 2019-06-11 03:21:49 +0200 | [diff] [blame] | 125 | # Charger images |
| 126 | PRODUCT_PACKAGES += \ |
| 127 | omni_charger_res_images \ |
| 128 | animation.txt \ |
| 129 | font_charger.png |
| 130 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 131 | # Dalvik |
| 132 | $(call inherit-product, frameworks/native/build/phone-xhdpi-6144-dalvik-heap.mk) |
| 133 | |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 134 | # DeviceParts |
| 135 | PRODUCT_PACKAGES += \ |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 136 | DeviceParts |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 137 | |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 138 | # Display |
| 139 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 140 | android.hardware.graphics.common-V1-ndk_platform.vendor \ |
| 141 | android.hardware.memtrack@1.0-impl \ |
| 142 | android.hardware.memtrack@1.0-service \ |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 143 | libion \ |
| 144 | libtinyxml2 |
| 145 | |
| 146 | PRODUCT_PACKAGES += \ |
| 147 | libtinyalsa |
| 148 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 149 | # DRM |
| 150 | PRODUCT_PACKAGES += \ |
| 151 | android.hardware.drm@1.3.vendor \ |
| 152 | android.hardware.drm@1.4-service.clearkey |
| 153 | |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 154 | # fastbootd |
| 155 | PRODUCT_PACKAGES += \ |
micky387 | 4b8cbf5 | 2021-05-27 02:46:55 +0200 | [diff] [blame] | 156 | android.hardware.fastboot@1.0-impl-mock \ |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 157 | fastbootd |
Fenglin Wu | c1f19de | 2018-07-10 10:51:08 +0800 | [diff] [blame] | 158 | |
micky387 | 2a9055a | 2019-08-22 22:37:25 +0200 | [diff] [blame] | 159 | # FM |
mickael saibi | a701b82 | 2021-02-13 15:43:55 +0100 | [diff] [blame] | 160 | PRODUCT_PACKAGES += \ |
micky387 | 2a9055a | 2019-08-22 22:37:25 +0200 | [diff] [blame] | 161 | FM2 \ |
| 162 | libqcomfm_jni \ |
| 163 | qcom.fmradio |
| 164 | |
mickael saibi | a701b82 | 2021-02-13 15:43:55 +0100 | [diff] [blame] | 165 | PRODUCT_BOOT_JARS += qcom.fmradio |
micky387 | 2a9055a | 2019-08-22 22:37:25 +0200 | [diff] [blame] | 166 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 167 | # Gatekeeper |
micky387 | 22c3b45 | 2020-01-04 07:59:01 +0100 | [diff] [blame] | 168 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 169 | android.hardware.gatekeeper@1.0.vendor |
| 170 | |
| 171 | # GPS |
| 172 | PRODUCT_PACKAGES += \ |
| 173 | android.hardware.gnss.measurement_corrections@1.1.vendor \ |
| 174 | android.hardware.gnss.visibility_control@1.0.vendor \ |
| 175 | android.hardware.gnss@2.1.vendor |
| 176 | |
| 177 | # Health |
| 178 | PRODUCT_PACKAGES += \ |
| 179 | android.hardware.health@2.1-impl \ |
| 180 | android.hardware.health@2.1-service |
micky387 | 22c3b45 | 2020-01-04 07:59:01 +0100 | [diff] [blame] | 181 | |
micky387 | d8e31eb | 2021-02-19 21:23:59 +0100 | [diff] [blame] | 182 | # HIDL |
| 183 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 184 | libhwbinder.vendor |
micky387 | d8e31eb | 2021-02-19 21:23:59 +0100 | [diff] [blame] | 185 | |
micky387 | 2e9a6b7 | 2019-07-02 20:48:08 +0200 | [diff] [blame] | 186 | # Input |
| 187 | PRODUCT_COPY_FILES += \ |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 188 | $(LOCAL_PATH)/keylayout/fts_ts.idc:system/usr/idc/fts_ts.idc \ |
| 189 | $(LOCAL_PATH)/keylayout/fts_ts.kcm:system/usr/keychars/fts_ts.kcm \ |
micky387 | 2e9a6b7 | 2019-07-02 20:48:08 +0200 | [diff] [blame] | 190 | $(LOCAL_PATH)/keylayout/fts_ts.kl:system/usr/keylayout/fts_ts.kl \ |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 191 | $(LOCAL_PATH)/keylayout/i-rocks_Bluetooth_Keyboard.kl:system/usr/keylayout/i-rocks_Bluetooth_Keyboard.kl |
micky387 | 2e9a6b7 | 2019-07-02 20:48:08 +0200 | [diff] [blame] | 192 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 193 | # Keymaster |
| 194 | PRODUCT_PACKAGES += \ |
| 195 | android.hardware.keymaster@4.1.vendor |
| 196 | |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 197 | # Live Wallpapers |
| 198 | PRODUCT_PACKAGES += \ |
| 199 | LiveWallpapers \ |
| 200 | LiveWallpapersPicker \ |
| 201 | VisualizationWallpapers \ |
| 202 | librs_jni |
| 203 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 204 | # Media |
| 205 | PRODUCT_PACKAGES += \ |
| 206 | libOmxAacEnc \ |
| 207 | libOmxAmrEnc \ |
| 208 | libOmxEvrcEnc \ |
| 209 | libOmxG711Enc \ |
| 210 | libOmxQcelp13Enc \ |
| 211 | libavservices_minijail \ |
| 212 | libavservices_minijail.vendor \ |
| 213 | libavservices_minijail_vendor \ |
| 214 | libstagefright_softomx.vendor \ |
| 215 | libstagefrighthw |
| 216 | |
| 217 | # Net |
| 218 | PRODUCT_PACKAGES += \ |
| 219 | android.system.net.netd@1.1.vendor |
| 220 | |
| 221 | # Neural Network |
| 222 | PRODUCT_PACKAGES += \ |
| 223 | android.hardware.neuralnetworks@1.3.vendor |
| 224 | |
micky387 | 6254031 | 2021-03-12 22:43:56 +0100 | [diff] [blame] | 225 | # NFC |
| 226 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 227 | android.hardware.nfc@1.2.vendor \ |
| 228 | android.hardware.secure_element@1.2.vendor \ |
micky387 | 6254031 | 2021-03-12 22:43:56 +0100 | [diff] [blame] | 229 | NfcNci \ |
micky387 | e5ae8c7 | 2019-08-07 20:01:48 +0200 | [diff] [blame] | 230 | Tag \ |
micky387 | 6254031 | 2021-03-12 22:43:56 +0100 | [diff] [blame] | 231 | SecureElement \ |
micky387 | e5ae8c7 | 2019-08-07 20:01:48 +0200 | [diff] [blame] | 232 | com.android.nfc_extras |
| 233 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 234 | # Platform |
| 235 | PRODUCT_AAPT_CONFIG := normal |
| 236 | PRODUCT_AAPT_PREF_CONFIG := xxhdpi |
| 237 | PRODUCT_BUILD_SUPER_PARTITION := false |
| 238 | PRODUCT_USE_DYNAMIC_PARTITIONS := true |
| 239 | |
| 240 | # Power |
| 241 | PRODUCT_PACKAGES += \ |
| 242 | android.hardware.power@1.2.vendor \ |
| 243 | android.hardware.power-V1-ndk_platform.vendor |
| 244 | |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 245 | # Prebuilt |
| 246 | PRODUCT_COPY_FILES += \ |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 247 | $(call find-copy-subdir-files,*,device/asus/zenfone8/prebuilt/product,product) \ |
| 248 | $(call find-copy-subdir-files,*,device/asus/zenfone8/prebuilt/root,recovery/root) \ |
| 249 | $(call find-copy-subdir-files,*,device/asus/zenfone8/prebuilt/system,system) \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 250 | $(call find-copy-subdir-files,*,device/asus/zenfone8/prebuilt/system_ext,system_ext) \ |
| 251 | $(call find-copy-subdir-files,*,device/asus/zenfone8/prebuilt/vendor,vendor) |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 252 | |
micky387 | 82dbd1a | 2019-09-17 08:11:02 +0200 | [diff] [blame] | 253 | # Properties |
| 254 | BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true |
| 255 | |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 256 | # Ramdisk |
| 257 | PRODUCT_COPY_FILES += \ |
micky387 | d171b67 | 2022-01-06 23:10:55 +0100 | [diff] [blame] | 258 | $(LOCAL_PATH)/ramdisk/fstab.default:$(TARGET_COPY_OUT_VENDOR_RAMDISK)/first_stage_ramdisk/fstab.default \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 259 | $(LOCAL_PATH)/ramdisk/fstab.default:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.default |
micky387 | 81c15c8 | 2021-05-21 12:59:35 +0200 | [diff] [blame] | 260 | |
micky387 | 9ed76f0 | 2019-11-10 08:07:45 +0100 | [diff] [blame] | 261 | # Remove unwanted packages |
| 262 | PRODUCT_PACKAGES += \ |
micky387 | e568a8a | 2019-12-05 20:38:19 +0100 | [diff] [blame] | 263 | RemovePackages |
micky387 | 9ed76f0 | 2019-11-10 08:07:45 +0100 | [diff] [blame] | 264 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 265 | # RIL |
| 266 | PRODUCT_PACKAGES += \ |
| 267 | android.hardware.radio@1.5.vendor \ |
| 268 | android.hardware.radio.config@1.2.vendor \ |
| 269 | android.hardware.radio.deprecated@1.0.vendor |
| 270 | |
Bruno Martins | ff55cad | 2019-09-05 12:17:15 +0100 | [diff] [blame] | 271 | # Soong namespaces |
| 272 | PRODUCT_SOONG_NAMESPACES += \ |
| 273 | $(LOCAL_PATH) |
| 274 | |
micky387 | 97fff40 | 2020-12-30 23:10:35 +0100 | [diff] [blame] | 275 | # Systemhelper |
| 276 | PRODUCT_PACKAGES += \ |
| 277 | vendor.qti.hardware.systemhelper@1.0 |
| 278 | |
micky387 | 7fec595 | 2019-09-28 10:19:41 +0200 | [diff] [blame] | 279 | # Telephony |
| 280 | PRODUCT_PACKAGES += \ |
| 281 | ims-ext-common \ |
| 282 | ims_ext_common.xml \ |
| 283 | qti-telephony-hidl-wrapper \ |
| 284 | qti_telephony_hidl_wrapper.xml \ |
| 285 | qti-telephony-utils \ |
micky387 | 8459a0c | 2020-05-01 18:24:34 +0200 | [diff] [blame] | 286 | qti_telephony_utils.xml \ |
| 287 | tcmiface |
micky387 | 7fec595 | 2019-09-28 10:19:41 +0200 | [diff] [blame] | 288 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 289 | # Tether offload |
| 290 | PRODUCT_PACKAGES += \ |
| 291 | android.hardware.tetheroffload.config@1.0.vendor \ |
| 292 | android.hardware.tetheroffload.control@1.0.vendor |
| 293 | |
| 294 | # Thermal |
| 295 | PRODUCT_PACKAGES += \ |
| 296 | android.hardware.thermal@2.0.vendor |
| 297 | |
| 298 | # TrustedUI |
| 299 | PRODUCT_PACKAGES += \ |
| 300 | android.hidl.memory.block@1.0.vendor |
| 301 | |
micky387 | be0ade6 | 2019-06-11 03:20:23 +0200 | [diff] [blame] | 302 | # Update engine |
| 303 | PRODUCT_PACKAGES += \ |
| 304 | otapreopt_script \ |
micky387 | be0ade6 | 2019-06-11 03:20:23 +0200 | [diff] [blame] | 305 | update_engine \ |
| 306 | update_engine_sideload \ |
| 307 | update_verifier |
| 308 | |
micky387 | 0f68c2b | 2019-09-11 14:28:27 +0200 | [diff] [blame] | 309 | PRODUCT_HOST_PACKAGES += \ |
| 310 | brillo_update_payload |
| 311 | |
micky387 | be0ade6 | 2019-06-11 03:20:23 +0200 | [diff] [blame] | 312 | PRODUCT_PACKAGES_DEBUG += \ |
| 313 | update_engine_client |
| 314 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 315 | # USB |
micky387 | 18f07ac | 2019-06-10 00:40:50 +0200 | [diff] [blame] | 316 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 317 | android.hardware.usb@1.2.vendor |
| 318 | |
| 319 | # Vendor service manager |
| 320 | PRODUCT_PACKAGES += \ |
| 321 | vndservicemanager |
| 322 | |
| 323 | # Vibrator |
| 324 | PRODUCT_PACKAGES += \ |
| 325 | android.hardware.vibrator-V1-ndk_platform.vendor |
| 326 | |
| 327 | # Wifi |
| 328 | PRODUCT_PACKAGES += \ |
micky387 | 7a3d0e4 | 2022-02-02 19:37:28 +0100 | [diff] [blame] | 329 | android.hardware.wifi@1.0-service \ |
| 330 | hostapd \ |
| 331 | libwifi-hal-qcom \ |
| 332 | libwpa_client \ |
| 333 | wpa_supplicant \ |
| 334 | wpa_supplicant.conf |
micky387 | d58b643 | 2020-10-09 04:09:07 +0200 | [diff] [blame] | 335 | |
micky387 | d8e31eb | 2021-02-19 21:23:59 +0100 | [diff] [blame] | 336 | # Wifi Display |
| 337 | PRODUCT_PACKAGES += \ |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 338 | libnl |
micky387 | d8e31eb | 2021-02-19 21:23:59 +0100 | [diff] [blame] | 339 | |
micky387 | 75841bc | 2022-01-06 23:13:55 +0100 | [diff] [blame] | 340 | #PRODUCT_BOOT_JARS += \ |
micky387 | d8e31eb | 2021-02-19 21:23:59 +0100 | [diff] [blame] | 341 | WfdCommon |
| 342 | |
micky387 | 009b31a | 2022-01-20 18:48:41 +0100 | [diff] [blame] | 343 | $(call inherit-product, hardware/qcom-caf/sm8350/media/product.mk) |
| 344 | $(call inherit-product, vendor/qcom/opensource/commonsys-intf/display/config/display-product-system.mk) |
| 345 | $(call inherit-product, vendor/qcom/opensource/commonsys/display/config/display-product-commonsys.mk) |