xref: /aosp_15_r20/external/cronet/build/config/fuchsia/test/archivist.shard.test-cml (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1// Copyright 2022 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4{
5  children: [
6    {
7      name: "isolated_archivist",
8      url: "fuchsia-pkg://fuchsia.com/archivist-for-embedding#meta/archivist-for-embedding.cm",
9    },
10  ],
11  use: [
12    {
13      protocol: "fuchsia.logger.Log",
14      path: "/svc/fuchsia.logger.Log.isolated",
15      from: "#isolated_archivist",
16    },
17    {
18      protocol: "fuchsia.logger.LogSink",
19      path: "/svc/fuchsia.logger.LogSink.isolated",
20      from: "#isolated_archivist",
21    },
22  ],
23  offer: [
24    {
25      event_stream: [
26        "capability_requested",
27        "directory_ready",
28      ],
29      from: "parent",
30      to: "#isolated_archivist",
31    },
32    {
33      protocol: "fuchsia.logger.LogSink",
34      from: "parent",
35      to: "#isolated_archivist",
36    },
37  ],
38  facets: {
39    "fuchsia.test": {
40        "deprecated-allowed-packages": [ "archivist-for-embedding" ],
41    },
42  },
43}
44