From 993729bb9b4ffb3b3759e32f958446b9714ab117 Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 30 Aug 2021 15:29:07 +0900 Subject: [PATCH] sdm660-common: Remove ndk_platform backend. Use the ndk backend. The ndk_platform backend will soon be deprecated because the ndk backend can serve the same purpose. This is to eliminate the confusion about having two variants (ndk and ndk_platform) for the same ndk backend. Bug: 161456198 Test: m Merged-In: I14a1c57bd06f1f2aa52491f779c7030d4de03547 Change-Id: I14a1c57bd06f1f2aa52491f779c7030d4de03547 Signed-off-by: pix106 --- light/Android.bp | 2 +- power-libperfmgr/Android.bp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/light/Android.bp b/light/Android.bp index 78e4cfee..b439eb68 100644 --- a/light/Android.bp +++ b/light/Android.bp @@ -29,7 +29,7 @@ cc_binary { "liblog", "libhardware", "libbinder_ndk", - "android.hardware.light-V1-ndk_platform", + "android.hardware.light-V1-ndk", ], srcs: [ "aidl/Lights.cpp", diff --git a/power-libperfmgr/Android.bp b/power-libperfmgr/Android.bp index f7de27a2..00dfd30a 100644 --- a/power-libperfmgr/Android.bp +++ b/power-libperfmgr/Android.bp @@ -39,7 +39,7 @@ cc_binary { vintf_fragments: ["aidl/android.hardware.power-service.xiaomi_sdm660.xml"], vendor: true, shared_libs: [ - "android.hardware.power-V2-ndk_platform", + "android.hardware.power-V2-ndk", "libbase", "libcutils", "liblog", @@ -48,7 +48,7 @@ cc_binary { "libdisppower-xiaomi_sdm660", "libperfmgr", "libprocessgroup", - "pixel-power-ext-V1-ndk_platform", + "pixel-power-ext-V1-ndk", ], srcs: [ "aidl/service.cpp",