diff options
author | Jiyong Park <jiyong@google.com> | 2022-03-21 18:27:57 -0300 |
---|---|---|
committer | sinanmohd <pcmsinan@gmail.com> | 2023-01-05 21:30:23 +0530 |
commit | 00c0220755eff8afbe6c1174004e858a4eaa05fd (patch) | |
tree | 7454c71b4758d23e0451cf63be398b95f6776cad | |
parent | 6234208f5f2f3ea043960089f636e1ef963e5a69 (diff) |
veux: 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.
-rw-r--r-- | vibrator/Android.bp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vibrator/Android.bp b/vibrator/Android.bp index e9d6056..04318b9 100644 --- a/vibrator/Android.bp +++ b/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.xiaomi_holi", ], } |