From 9171299e0fbaf22cf63f4070331eb034b91b7339 Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 9 Aug 2021 09:01:16 +0900 Subject: [PATCH] vibrator: 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: I7b9055909b901843631314b9577a9e578a739d00 --- aidl/vibrator/Android.bp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aidl/vibrator/Android.bp b/aidl/vibrator/Android.bp index 608d541..b175621 100644 --- a/aidl/vibrator/Android.bp +++ b/aidl/vibrator/Android.bp @@ -14,7 +14,7 @@ cc_library_shared { "liblog", "libqtivibratoreffect", "libbinder_ndk", - "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.vibrator-V1-ndk", ], export_include_dirs: ["include"] } @@ -36,7 +36,7 @@ cc_binary { "libutils", "libbase", "libbinder_ndk", - "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.vibrator-V1-ndk", "vendor.qti.hardware.vibrator.impl.oplus", ], } @@ -56,7 +56,7 @@ cc_library_shared { "libqtivibratoreffect", "libqtivibratoreffectoffload", "libbinder_ndk", - "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.vibrator-V1-ndk", ], export_include_dirs: ["include"], } @@ -78,7 +78,7 @@ cc_binary { "libutils", "libbase", "libbinder_ndk", - "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.vibrator-V1-ndk", "vendor.qti.hardware.vibrator.offload.impl.oplus", ], }