blob: d517a847848219fda81ef8dda8c0d85d34665459 [file] [log] [blame]
// 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: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
children: [
{
name: "test_driver",
url: "test-driver#meta/test-driver.cm",
},
{
name: "sensors",
url: "sensors#meta/sensors.cm",
},
{
name: "playback",
url: "sensors_playback#meta/sensors_playback.cm",
},
],
offer: [
{
protocol: [
"fuchsia.hardware.sensors.Driver",
"fuchsia.hardware.sensors.Playback",
],
from: "#playback",
to: [
"#sensors",
"#test_driver",
],
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_driver",
},
],
}