Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3b9a257 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Change-Id: I8344a62698c6bf9011921c9472b4565a63bbeb0b
parents 73053bf4 d0e8e7b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
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
+3 −3
Original line number Diff line number Diff line
@@ -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",
    ],
}
+1 −1
Original line number Diff line number Diff line
@@ -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",
    ],
}