blob: 013fc57dda962fa7a4991b5674a8c23514016059 [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: [
"//src/sys/test_runners/gtest/default.shard.cml",
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/agis_test",
},
children: [
{
name: "agis",
url: "#meta/agis.cm",
},
{
name: "netstack-debug",
url: "#meta/netstack-debug.cm",
},
],
use: [
{
protocol: [ "fuchsia.gpu.agis.ComponentRegistry" ],
from: "#agis",
},
{
protocol: [ "fuchsia.gpu.agis.Observer" ],
from: "#agis",
},
{
protocol: [ "fuchsia.gpu.agis.Connector" ],
from: "#agis",
},
{
protocol: [ "fuchsia.posix.socket.Provider" ],
from: "#netstack-debug",
},
],
offer: [
{
protocol: [ "fuchsia.posix.socket.Provider" ],
from: "#netstack-debug",
to: "#agis",
},
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: [
"#agis",
"#netstack-debug",
],
},
],
}