Merge "vibrator ext: use package name as module name"

This commit is contained in:
Steven Moreland
2020-03-11 17:50:21 +00:00
committed by Gerrit Code Review
3 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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",
],
}

View File

@@ -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",
],
}