diff options
author | Steven Moreland <smoreland@google.com> | 2020-03-09 12:05:29 -0700 |
---|---|---|
committer | Jeongik Cha <jeongik@google.com> | 2020-04-09 08:24:59 +0000 |
commit | 8fe0c2e0ecb12839904d802ca1cb844b86bf354c (patch) | |
tree | d8d19c1b5b270edb5dfbc8961e89d6fa45b0490d /tests | |
parent | f6e0036c05508873ea2b3eaa8d3295dbf0437cc7 (diff) | |
download | platform_hardware_interfaces-8fe0c2e0ecb12839904d802ca1cb844b86bf354c.tar.gz platform_hardware_interfaces-8fe0c2e0ecb12839904d802ca1cb844b86bf354c.tar.bz2 platform_hardware_interfaces-8fe0c2e0ecb12839904d802ca1cb844b86bf354c.zip |
vibrator ext: use package name as module name
For consistency.
Bug: 153501107
Test: N/A
Change-Id: If32e8539fd8fffd5e27f0437bff480089e38f0da
Merged-In: If32e8539fd8fffd5e27f0437bff480089e38f0da
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extension/vibrator/aidl/Android.bp | 2 | ||||
-rw-r--r-- | tests/extension/vibrator/aidl/client/Android.bp | 6 | ||||
-rw-r--r-- | 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", ], } |