blob: 0b93ecb57ae19243116cf1d4bb43fc937a5a12ea [file] [log] [blame]
// Copyright 2020 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.
// Intentionally broken, component manifest for the `echo_server` example
// program, to demonstrate failed routing due to a non-startable component.
{
include: [ "sdk/lib/diagnostics/syslog/client.shard.cml" ],
program: {
// Wrong binary name.
binary: "bin/routing_failed_echo_server_oops",
},
capabilities: [
{ protocol: "fidl.examples.routing.echo.Echo2" },
],
use: [
{ runner: "elf" },
],
expose: [
{
protocol: "fidl.examples.routing.echo.Echo2",
from: "self",
},
],
}