blob: 045de5fed982c1e49830f162c616c04d9fb0bc4d [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.
{
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",
},
],
}