mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
In order to provide a more descriptive name, and to be consistent with HIDL, the stable AIDL package names are switching from vintf-vibrator format to the package format (android.hardware.vibrator). Bug: N/A Test: all build time Change-Id: I52959482898f329ad1b3a3a5b345a0c6dc72197d
33 lines
799 B
Plaintext
33 lines
799 B
Plaintext
cc_library_static {
|
|
name: "libvibratorexampleimpl",
|
|
vendor: true,
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"android.hardware.vibrator-ndk_platform",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
srcs: ["Vibrator.cpp"],
|
|
visibility: [
|
|
":__subpackages__",
|
|
"//hardware/interfaces/tests/extension/vibrator:__subpackages__",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.vibrator-service.example",
|
|
relative_install_path: "hw",
|
|
init_rc: ["vibrator-default.rc"],
|
|
vintf_fragments: ["vibrator-default.xml"],
|
|
vendor: true,
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"android.hardware.vibrator-ndk_platform",
|
|
],
|
|
static_libs: [
|
|
"libvibratorexampleimpl",
|
|
],
|
|
srcs: ["main.cpp"],
|
|
}
|