| // 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: [ |
| "sys/testing/elf_test_runner.shard.cml", |
| "syslog/client.shard.cml", |
| ], |
| program: { |
| binary: "bin/rust_fxt_integration_test_bin", |
| }, |
| children: [ |
| { |
| name: "trace_manager", |
| url: "#meta/trace_manager.cm", |
| }, |
| ], |
| collections: [ |
| { |
| name: "dynamic", |
| durability: "transient", |
| }, |
| ], |
| use: [ |
| { |
| protocol: [ "fuchsia.tracing.controller.Provisioner" ], |
| from: "#trace_manager", |
| }, |
| { |
| protocol: [ "fuchsia.component.Realm" ], |
| from: "framework", |
| }, |
| ], |
| offer: [ |
| { |
| protocol: "fuchsia.tracing.provider.Registry", |
| from: "#trace_manager", |
| to: "#dynamic", |
| }, |
| ], |
| } |