diff options
author | Jiyong Park <jiyong@google.com> | 2021-07-27 12:16:52 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2021-07-27 14:44:47 +0900 |
commit | 27f77fefd71e486e72c9dc4150dc316de13a9153 (patch) | |
tree | f6ea42080586da5439ae7c3809c737a666ee8e6e /identity | |
parent | 738dd1a9e3cefb9c208238a4df2ab44384a4935a (diff) |
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
Change-Id: Ibe8beeaf0d1b33968fb782f1f70c17ae9e9bf871
Diffstat (limited to 'identity')
-rw-r--r-- | identity/aidl/default/Android.bp | 10 | ||||
-rw-r--r-- | identity/aidl/vts/Android.bp | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/identity/aidl/default/Android.bp b/identity/aidl/default/Android.bp index 28c489309f..3de8d30148 100644 --- a/identity/aidl/default/Android.bp +++ b/identity/aidl/default/Android.bp @@ -39,8 +39,8 @@ cc_library_static { "libsoft_attestation_cert", "libpuresoftkeymasterdevice", "android.hardware.identity-support-lib", - "android.hardware.identity-V3-ndk_platform", - "android.hardware.keymaster-V3-ndk_platform", + "android.hardware.identity-V3-ndk", + "android.hardware.keymaster-V3-ndk", ], } @@ -100,8 +100,8 @@ cc_binary { "libsoft_attestation_cert", "libpuresoftkeymasterdevice", "android.hardware.identity-support-lib", - "android.hardware.identity-V3-ndk_platform", - "android.hardware.keymaster-V3-ndk_platform", + "android.hardware.identity-V3-ndk", + "android.hardware.keymaster-V3-ndk", "android.hardware.identity-libeic-hal-common", "android.hardware.identity-libeic-library", ], @@ -127,7 +127,7 @@ cc_test { "-DEIC_DEBUG", ], local_include_dirs: [ - "common", + "common", ], shared_libs: [ "liblog", diff --git a/identity/aidl/vts/Android.bp b/identity/aidl/vts/Android.bp index 61d15d2d54..e5de91e22e 100644 --- a/identity/aidl/vts/Android.bp +++ b/identity/aidl/vts/Android.bp @@ -42,7 +42,7 @@ cc_test { "android.hardware.identity-support-lib", "android.hardware.identity-V3-cpp", "android.hardware.keymaster-V3-cpp", - "android.hardware.keymaster-V3-ndk_platform", + "android.hardware.keymaster-V3-ndk", "libkeymaster4support", "libkeymaster4_1support", ], |