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