blob: 5a4156cff131ae8b5164a12c55ad2a6f0054d60a [file] [log] [blame]
// Copyright 2023 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/sys/component/realm_builder.shard.cml",
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
children: [
{
name: "test_realm_factory",
url: "sampler-realm-factory#meta/realm-factory.cm",
},
{
name: "test_suite",
url: "sampler-test-suite#meta/sampler-test-suite.cm",
},
],
offer: [
{
protocol: "test.sampler.RealmFactory",
from: "#test_realm_factory",
to: "#test_suite",
},
{
protocol: [ "fuchsia.diagnostics.ArchiveAccessor" ],
from: "parent",
to: "#test_suite",
},
{
event_stream: [ "capability_requested" ],
from: "parent",
to: "#test_realm_factory",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_suite",
},
],
}