| // Copyright 2022 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. |
| // This is a v2 component manifest. |
| { |
| include: [ |
| "//src/sys/test_runners/gtest/default.shard.cml", |
| "inspect/client.shard.cml", |
| "syslog/client.shard.cml", |
| ], |
| program: { |
| binary: "bin/inspect_service_llcpp_unittests_bin", |
| }, |
| children: [ |
| { |
| name: "inspector_publisher", |
| url: "publish_inspector_only#meta/program.cm", |
| }, |
| { |
| name: "vmo_publisher", |
| url: "publish_vmo_only#meta/program.cm", |
| }, |
| ], |
| use: [ |
| { |
| protocol: "fuchsia.component.Binder", |
| from: "#inspector_publisher", |
| path: "/svc/InspectorPublisherBinder", |
| }, |
| { |
| protocol: "fuchsia.component.Binder", |
| from: "#vmo_publisher", |
| path: "/svc/VmoPublisherBinder", |
| }, |
| { protocol: "fuchsia.diagnostics.ArchiveAccessor" }, |
| ], |
| } |