blob: d2944ffb20271b54b1e8058dc0694a38e1b2d630 [file] [log] [blame]
// Copyright 2022 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: [
"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.name.Lookup" }
],
// [END_EXCLUDE]
}
// [END manifest]