aboutsummaryrefslogtreecommitdiff
path: root/guest/hals/bt/remote/Android.bp
blob: 5f0857d335df933cd73c636422b3ae2a2869f940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
cc_binary {
    name: "android.hardware.bluetooth@1.1-service.remote",
    defaults: ["cuttlefish_guest_only", "hidl_defaults"],
    vendor: true,
    relative_install_path: "hw",
    srcs: [
        "remote_bluetooth.cpp",
        "service.cpp",
    ],

    shared_libs: [
        "android.hardware.bluetooth@1.0",
        "android.hardware.bluetooth@1.1",
        "libcuttlefish_fs",
        "libbase",
        "libhidlbase",
        "libutils",
        "liblog",
        "libcutils",
        "libprotobuf-cpp-lite",
    ],
    static_libs: [
        "libbt-rootcanal",
        "libbt-rootcanal-types",
        "async_fd_watcher",
    ],
    init_rc: ["android.hardware.bluetooth@1.1-service.remote.rc"],
}