blob: c70e5f3fc8b88a6a364cdfd5e429f2da747b142a [file] [log] [blame]
// Integration test component that runs a Trigger service. When triggered, the
// component echoes a string using the Echo service and prints it.
{
include: [ "//sdk/lib/diagnostics/syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/trigger",
args: [
"Triggered",
"b",
],
},
capabilities: [
{ protocol: "fidl.test.components.Trigger" },
],
use: [
{ protocol: "fidl.examples.routing.echo.Echo" },
],
expose: [
{
protocol: "fidl.test.components.Trigger",
from: "self",
},
],
}