1// A binary for small, single-threaded HALs 2package { 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6cc_binary { 7 name: "small_hals.crosshatch-service", 8 defaults: ["hidl_defaults"], 9 relative_install_path: "hw", 10 proprietary: true, 11 init_rc: ["small_hals.crosshatch-service.rc"], 12 vintf_fragments: ["small_hals.crosshatch-service.xml"], 13 srcs: ["service.cpp"], 14 15 shared_libs: [ 16 "android.hardware.memtrack@1.0", 17 "android.hardware.vibrator@1.0", 18 "android.hardware.vibrator@1.1", 19 "android.hardware.vibrator@1.2", 20 "libbase", 21 "libhidlbase", 22 "liblog", 23 "libutils", 24 ], 25} 26