From 8fe0c2e0ecb12839904d802ca1cb844b86bf354c Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 9 Mar 2020 12:05:29 -0700 Subject: [PATCH] vibrator ext: use package name as module name For consistency. Bug: 153501107 Test: N/A Change-Id: If32e8539fd8fffd5e27f0437bff480089e38f0da Merged-In: If32e8539fd8fffd5e27f0437bff480089e38f0da --- tests/extension/vibrator/aidl/Android.bp | 2 +- tests/extension/vibrator/aidl/client/Android.bp | 6 +++--- tests/extension/vibrator/aidl/default/Android.bp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/extension/vibrator/aidl/Android.bp b/tests/extension/vibrator/aidl/Android.bp index 42e0a9200b..b1cda0c9c1 100644 --- a/tests/extension/vibrator/aidl/Android.bp +++ b/tests/extension/vibrator/aidl/Android.bp @@ -1,7 +1,7 @@ aidl_interface { // This is an example test interface showing how to add functionality // with setExtension/getExtension - name: "test-android.hardware.vibrator-ext", + name: "android.hardware.tests.extension.vibrator", vendor_available: true, srcs: [ // Using android.hardware as the package because this is in diff --git a/tests/extension/vibrator/aidl/client/Android.bp b/tests/extension/vibrator/aidl/client/Android.bp index c707dbe458..b0d82382fa 100644 --- a/tests/extension/vibrator/aidl/client/Android.bp +++ b/tests/extension/vibrator/aidl/client/Android.bp @@ -3,7 +3,7 @@ // server for example. cc_test { - name: "test-android.hardware.vibrator-ext-client", + name: "android.hardware.tests.extension.vibrator-client", srcs: [ // system code has the option to use the unstable C++ libbinder API // or the NDK one. For maximum code portability, using the ndk client @@ -15,10 +15,10 @@ cc_test { "libbinder", "libutils", "android.hardware.vibrator-cpp", - "test-android.hardware.vibrator-ext-cpp", + "android.hardware.tests.extension.vibrator-cpp", "libbinder_ndk", "android.hardware.vibrator-ndk_platform", - "test-android.hardware.vibrator-ext-ndk_platform", + "android.hardware.tests.extension.vibrator-ndk_platform", ], } diff --git a/tests/extension/vibrator/aidl/default/Android.bp b/tests/extension/vibrator/aidl/default/Android.bp index 7c8fe1fc96..ed40d259ab 100644 --- a/tests/extension/vibrator/aidl/default/Android.bp +++ b/tests/extension/vibrator/aidl/default/Android.bp @@ -20,6 +20,6 @@ cc_binary { "libbase", "libbinder_ndk", "android.hardware.vibrator-ndk_platform", - "test-android.hardware.vibrator-ext-ndk_platform", + "android.hardware.tests.extension.vibrator-ndk_platform", ], }