blob: 82433f96439fb998fad4af07ea5338f2b3dc5724 [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.
{
include: [ "sdk/lib/diagnostics/syslog/client.shard.cml" ],
// The binary to run for this component.
program: {
runner: "elf",
binary: "bin/driver_index",
},
capabilities: [
{
protocol: [ "fuchsia.driver.framework.DriverIndex" ],
},
],
// Capabilities used by this component.
use: [
// Use the built-in ELF runner to run native binaries.
],
expose: [
{
protocol: [ "fuchsia.driver.framework.DriverIndex" ],
from: "self",
},
],
}