blob: 05e2835fed25d5a2263c83c9e56e3d3fe549d742 [file] [log] [blame]
// Copyright 2021 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.
// [START manifest]
{
include: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
// Information about the program to run.
program: {
// Use the built-in ELF runner.
runner: "elf",
// The binary to run for this component.
binary: "bin/echo_example",
// Program arguments
args: [
"Alice",
"Bob",
],
// Program environment variables
environ: [ "FAVORITE_ANIMAL=Spot" ],
},
// [START_EXCLUDE]
// Capabilities used by this component.
use: [
// List your component's dependencies here, ex:
// { protocol: "fuchsia.net.NameLookup" }
],
// [END_EXCLUDE]
}
// [END manifest]