Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c6d8675 authored by /e/ robot's avatar /e/ robot
Browse files

Merge remote-tracking branch 'origin/lineage-20.0' into v1-t

parents f4fb6540 2bc8b8d5
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -47,7 +47,6 @@ PRODUCT_HOST_PACKAGES += \
# Base modules and settings for the vendor partition.
PRODUCT_PACKAGES += \
    android.hardware.cas@1.2-service \
    android.hardware.media.omx@1.0-service \
    boringssl_self_test_vendor \
    dumpsys_vendor \
    fs_config_files_nonsystem \
@@ -74,6 +73,13 @@ PRODUCT_PACKAGES += \
    selinux_policy_nonsystem \
    shell_and_utilities_vendor \

# OMX not supported for 64bit_only builds
ifneq ($(TARGET_SUPPORTS_OMX_SERVICE),false)
    PRODUCT_PACKAGES += \
        android.hardware.media.omx@1.0-service \

endif

# Base module when shipping api level is less than or equal to 29
PRODUCT_PACKAGES_SHIPPING_API_LEVEL_29 += \
    android.hardware.configstore@1.1-service \
+3 −0
Original line number Diff line number Diff line
@@ -31,3 +31,6 @@ PRODUCT_VENDOR_PROPERTIES += dalvik.vm.dex2oat64.enabled=true

TARGET_SUPPORTS_32_BIT_APPS := false
TARGET_SUPPORTS_64_BIT_APPS := true
ifeq ($(TARGET_SUPPORTS_OMX_SERVICE),)
$(warning TARGET_SUPPORTS_OMX_SERVICE is undefined. Please set it to true if your target uses OMX service, or false otherwise.)
endif