blob: 42405ad03ba4d4f3be9fea93246e9a658d59216f [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
include: [
"driver_component/driver.shard.cml",
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "driver",
binary: "driver/bt-transport-uart.so",
bind: "meta/bind/bt-transport-uart.bindbc",
colocate: "true",
default_dispatcher_opts: [ "allow_sync_calls" ],
fallback: "false",
},
capabilities: [
{ service: "fuchsia.hardware.bluetooth.HciService" },
{ service: "fuchsia.hardware.serialimpl.Service" },
],
use: [
{ service: "fuchsia.hardware.serialimpl.Service" },
],
expose: [
{
service: "fuchsia.hardware.bluetooth.HciService",
from: "self",
},
{
service: "fuchsia.hardware.serialimpl.Service",
from: "self",
},
],
}