| // 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", |
| "syslog/client.shard.cml", |
| ], |
| children: [ |
| { |
| name: "test_realm_factory", |
| url: "echo_server-realm-factory#meta/realm-factory.cm", |
| }, |
| { |
| name: "test_suite", |
| url: "test-suite#meta/test-suite.cm", |
| }, |
| ], |
| offer: [ |
| { |
| protocol: "test.echoserver.RealmFactory", |
| from: "#test_realm_factory", |
| to: "#test_suite", |
| }, |
| ], |
| expose: [ |
| { |
| protocol: "fuchsia.test.Suite", |
| from: "#test_suite", |
| }, |
| ], |
| } |