blob: b1873404865388c02c25636aade3a386af41df52 [file] [log] [blame]
// Copyright {{COPYRIGHT_YEAR}} 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.
// {{PROJECT_NAME}} component manifest.
// For information on manifest format and features,
// see https://fuchsia.dev/fuchsia-src/concepts/components/component_manifests.
// This file was generated by the `fx create component-v2` command. The template
// is located at `//tools/create/templates/component-v2/meta/$.cml.tmpl`.
// If something is broken, consider authoring a fix.
{
// The binary to run for this component.
program: {
binary: "bin/{{PROJECT_NAME}}",
},
// Capabilities used by this component.
use: [
// Use the built-in ELF runner to run native binaries.
{ runner: "elf" },
// List your component's dependencies here, ex:
// { protocol: "/svc/fuchsia.logger.Log" }
],
}