diff --git a/rebootescrow/aidl/Android.bp b/rebootescrow/aidl/Android.bp index 7bc8d6ff3f..0742939621 100644 --- a/rebootescrow/aidl/Android.bp +++ b/rebootescrow/aidl/Android.bp @@ -1,5 +1,5 @@ aidl_interface { - name: "vintf-rebootescrow", + name: "android.hardware.rebootescrow", vendor_available: true, srcs: [ "android/hardware/rebootescrow/IRebootEscrow.aidl", diff --git a/rebootescrow/aidl/default/Android.bp b/rebootescrow/aidl/default/Android.bp index c8cbf48834..b77272f6d8 100644 --- a/rebootescrow/aidl/default/Android.bp +++ b/rebootescrow/aidl/default/Android.bp @@ -20,7 +20,7 @@ cc_library_static { shared_libs: [ "libbase", "libbinder_ndk", - "vintf-rebootescrow-ndk_platform", + "android.hardware.rebootescrow-ndk_platform", ], export_include_dirs: ["include"], srcs: [ @@ -47,7 +47,7 @@ cc_binary { shared_libs: [ "libbase", "libbinder_ndk", - "vintf-rebootescrow-ndk_platform", + "android.hardware.rebootescrow-ndk_platform", ], static_libs: [ "libhadamardutils", diff --git a/rebootescrow/aidl/vts/functional/Android.bp b/rebootescrow/aidl/vts/functional/Android.bp index dadf2509d8..5d51a53f06 100644 --- a/rebootescrow/aidl/vts/functional/Android.bp +++ b/rebootescrow/aidl/vts/functional/Android.bp @@ -25,7 +25,7 @@ cc_test { "libbinder", ], static_libs: [ - "vintf-rebootescrow-cpp", + "android.hardware.rebootescrow-cpp", ], test_suites: [ "vts-core", diff --git a/tests/extension/vibrator/aidl/Android.bp b/tests/extension/vibrator/aidl/Android.bp index ef9b39bd87..42e0a9200b 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-vintf-vibrator-ext", + name: "test-android.hardware.vibrator-ext", vendor_available: true, srcs: [ // Using android.hardware as the package because this is in @@ -18,7 +18,7 @@ aidl_interface { // This happens to use types from a core interface, so we import it, but // this won't always be needed. imports: [ - "vintf-vibrator", + "android.hardware.vibrator", ], backend: { diff --git a/tests/extension/vibrator/aidl/client/Android.bp b/tests/extension/vibrator/aidl/client/Android.bp index f7b71f79f0..c707dbe458 100644 --- a/tests/extension/vibrator/aidl/client/Android.bp +++ b/tests/extension/vibrator/aidl/client/Android.bp @@ -1,26 +1,24 @@ - // This example client is written as a test, but it is executing from a system // context. All this code would look the same if it was running in system // server for example. cc_test { - name: "test-vintf-vibrator-ext-client", + name: "test-android.hardware.vibrator-ext-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 - // makes the most sense, but both are provided here as an example. - "test-cpp-client.cpp", - "test-ndk-client.cpp", + // system code has the option to use the unstable C++ libbinder API + // or the NDK one. For maximum code portability, using the ndk client + // makes the most sense, but both are provided here as an example. + "test-cpp-client.cpp", + "test-ndk-client.cpp", ], shared_libs: [ - "libbinder", - "libutils", - "vintf-vibrator-cpp", - "test-vintf-vibrator-ext-cpp", + "libbinder", + "libutils", + "android.hardware.vibrator-cpp", + "test-android.hardware.vibrator-ext-cpp", - "libbinder_ndk", - "vintf-vibrator-ndk_platform", - "test-vintf-vibrator-ext-ndk_platform", + "libbinder_ndk", + "android.hardware.vibrator-ndk_platform", + "test-android.hardware.vibrator-ext-ndk_platform", ], } - diff --git a/tests/extension/vibrator/aidl/default/Android.bp b/tests/extension/vibrator/aidl/default/Android.bp index 9869657114..7c8fe1fc96 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", - "vintf-vibrator-ndk_platform", - "test-vintf-vibrator-ext-ndk_platform", + "android.hardware.vibrator-ndk_platform", + "test-android.hardware.vibrator-ext-ndk_platform", ], } diff --git a/vibrator/aidl/Android.bp b/vibrator/aidl/Android.bp index 1eec1da18f..ae7f4348ff 100644 --- a/vibrator/aidl/Android.bp +++ b/vibrator/aidl/Android.bp @@ -1,5 +1,5 @@ aidl_interface { - name: "vintf-vibrator", + name: "android.hardware.vibrator", vendor_available: true, srcs: [ "android/hardware/vibrator/*.aidl", diff --git a/vibrator/aidl/default/Android.bp b/vibrator/aidl/default/Android.bp index dc8867fadf..9e6d9cf2d9 100644 --- a/vibrator/aidl/default/Android.bp +++ b/vibrator/aidl/default/Android.bp @@ -4,13 +4,13 @@ cc_library_static { shared_libs: [ "libbase", "libbinder_ndk", - "vintf-vibrator-ndk_platform", + "android.hardware.vibrator-ndk_platform", ], export_include_dirs: ["include"], srcs: ["Vibrator.cpp"], visibility: [ - ":__subpackages__", - "//hardware/interfaces/tests/extension/vibrator:__subpackages__", + ":__subpackages__", + "//hardware/interfaces/tests/extension/vibrator:__subpackages__", ], } @@ -23,7 +23,7 @@ cc_binary { shared_libs: [ "libbase", "libbinder_ndk", - "vintf-vibrator-ndk_platform", + "android.hardware.vibrator-ndk_platform", ], static_libs: [ "libvibratorexampleimpl", diff --git a/vibrator/aidl/vts/Android.bp b/vibrator/aidl/vts/Android.bp index 20d53c7bcf..a01e432be6 100644 --- a/vibrator/aidl/vts/Android.bp +++ b/vibrator/aidl/vts/Android.bp @@ -9,7 +9,7 @@ cc_test { "libbinder", ], static_libs: [ - "vintf-vibrator-cpp", + "android.hardware.vibrator-cpp", ], test_suites: [ "vts-core",