You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
669 B
26 lines
669 B
// A binary for small, single-threaded HALs
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "small_hals.crosshatch-service",
|
|
defaults: ["hidl_defaults"],
|
|
relative_install_path: "hw",
|
|
proprietary: true,
|
|
init_rc: ["small_hals.crosshatch-service.rc"],
|
|
vintf_fragments: ["small_hals.crosshatch-service.xml"],
|
|
srcs: ["service.cpp"],
|
|
|
|
shared_libs: [
|
|
"android.hardware.memtrack@1.0",
|
|
"android.hardware.vibrator@1.0",
|
|
"android.hardware.vibrator@1.1",
|
|
"android.hardware.vibrator@1.2",
|
|
"libbase",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
}
|