diff options
author | Jeongik Cha <jeongik@google.com> | 2021-01-26 22:34:55 +0900 |
---|---|---|
committer | Jeongik Cha <jeongik@google.com> | 2021-01-28 15:14:10 +0000 |
commit | 1674c1354e4c191b9da955cd91f028abee359ae3 (patch) | |
tree | d6533354644a05e0e291debee35735b6d262bec5 /tests | |
parent | df543ea006c18e133827cef0a2fb1bc6de0fabb3 (diff) |
Specify version for aidl_interface explicitly
Bug: 150578172
Test: m
Change-Id: Ie7605c203c0f0eaf2c40f1e64ea45634b3aa54a5
Merged-In: I141de8ed6958fe42f727a0fa41473de4c1fb38de
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extension/vibrator/aidl/client/Android.bp | 8 | ||||
-rw-r--r-- | tests/extension/vibrator/aidl/default/Android.bp | 4 | ||||
-rw-r--r-- | tests/msgq/1.0/default/Android.bp | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/tests/extension/vibrator/aidl/client/Android.bp b/tests/extension/vibrator/aidl/client/Android.bp index b0d82382fa..108d000970 100644 --- a/tests/extension/vibrator/aidl/client/Android.bp +++ b/tests/extension/vibrator/aidl/client/Android.bp @@ -14,11 +14,11 @@ cc_test { shared_libs: [ "libbinder", "libutils", - "android.hardware.vibrator-cpp", - "android.hardware.tests.extension.vibrator-cpp", + "android.hardware.vibrator-V1-cpp", + "android.hardware.tests.extension.vibrator-V1-cpp", "libbinder_ndk", - "android.hardware.vibrator-ndk_platform", - "android.hardware.tests.extension.vibrator-ndk_platform", + "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.tests.extension.vibrator-V1-ndk_platform", ], } diff --git a/tests/extension/vibrator/aidl/default/Android.bp b/tests/extension/vibrator/aidl/default/Android.bp index ed40d259ab..fd19f13728 100644 --- a/tests/extension/vibrator/aidl/default/Android.bp +++ b/tests/extension/vibrator/aidl/default/Android.bp @@ -19,7 +19,7 @@ cc_binary { shared_libs: [ "libbase", "libbinder_ndk", - "android.hardware.vibrator-ndk_platform", - "android.hardware.tests.extension.vibrator-ndk_platform", + "android.hardware.vibrator-V1-ndk_platform", + "android.hardware.tests.extension.vibrator-V1-ndk_platform", ], } diff --git a/tests/msgq/1.0/default/Android.bp b/tests/msgq/1.0/default/Android.bp index a50206bb75..a0d6f31fd9 100644 --- a/tests/msgq/1.0/default/Android.bp +++ b/tests/msgq/1.0/default/Android.bp @@ -91,8 +91,8 @@ cc_test { // These are static libs only for testing purposes and portability. Shared // libs should be used on device. static_libs: [ - "android.hardware.common-unstable-ndk_platform", - "android.hardware.common.fmq-unstable-ndk_platform", + "android.hardware.common-V2-ndk_platform", + "android.hardware.common.fmq-V1-ndk_platform", "android.hardware.tests.msgq@1.0", "android.fmq.test-ndk_platform", ], |