1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_binary { 6 name: "android.hardware.bluetooth@1.1-service.remote", 7 defaults: ["cuttlefish_guest_only", "hidl_defaults"], 8 vendor: true, 9 relative_install_path: "hw", 10 srcs: [ 11 "remote_bluetooth.cpp", 12 "service.cpp", 13 ], 14 15 shared_libs: [ 16 "android.hardware.bluetooth@1.0", 17 "android.hardware.bluetooth@1.1", 18 "libcuttlefish_fs", 19 "libbase", 20 "libhidlbase", 21 "libutils", 22 "liblog", 23 "libcutils", 24 "libprotobuf-cpp-lite", 25 ], 26 static_libs: [ 27 "libbt-rootcanal", 28 "libbt-rootcanal-types", 29 "async_fd_watcher", 30 ], 31 init_rc: ["android.hardware.bluetooth@1.1-service.remote.rc"], 32} 33