blob: b8f56cf954509bbdc944c07841ada046806aa962 [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: {
runner: "elf",
// Wrong binary name.
binary: "bin/routing_failed_echo_server_oops",
},
capabilities: [
{ protocol: "fidl.examples.routing.echo.Echo2" },
],
expose: [
{
protocol: "fidl.examples.routing.echo.Echo2",
from: "self",
},
],
}