blob: 2124caaa65bfbe908c8df73d607eed454daea1ff [file] [log] [blame] [edit]
// Copyright 2024 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: [
"//examples/drivers/power/cpp/meta/config_capability.shard.cml",
"driver_component/driver.shard.cml",
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "driver",
binary: "driver/power_driver.so",
bind: "meta/bind/power_driver.bindbc",
},
capabilities: [
{
config: "fuchsia.mytest.SuspendEnabled",
type: "bool",
value: true,
},
],
use: [
{ protocol: "fuchsia.power.system.ActivityGovernor" },
{ protocol: "fuchsia.examples.Echo" },
],
}