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

Commit 08c0d1e4 authored by Asmeer Mohammed's avatar Asmeer Mohammed Committed by Gerrit - the friendly Code Review server
Browse files

audio_hal: Replace library name from ndk_platform to ndk for android-T

Change-Id: Ia65a04c9705ce777e2598250d41dff38b3a48182
parent a73b9c7a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1249,13 +1249,19 @@ LOCAL_C_INCLUDES:= \
        system/media/audio/include

LOCAL_SHARED_LIBRARIES:= \
        android.frameworks.automotive.powerpolicy-V1-ndk_platform \
        libbase \
        libbinder_ndk \
        libcutils \
        liblog \
        libpowerpolicyclient

# *-ndk_platform migrated to *-ndk from Android T onwards
ifeq ($(call math_gt_or_eq, $(PLATFORM_SDK_VERSION), 33), true)
    LOCAL_SHARED_LIBRARIES += android.frameworks.automotive.powerpolicy-V1-ndk
else
    LOCAL_SHARED_LIBRARIES += android.frameworks.automotive.powerpolicy-V1-ndk_platform
endif

ifneq ($(filter kona lahaina holi,$(TARGET_BOARD_PLATFORM)),)
LOCAL_SANITIZE := integer_overflow
endif