xref: /aosp_15_r20/external/cronet/build/config/fuchsia/test/present_view.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_a11y_manager",
8      url: "fuchsia-pkg://fuchsia.com/a11y-manager#meta/a11y-manager.cm",
9    },
10    {
11      name: "isolated_text_manager",
12      url: "fuchsia-pkg://fuchsia.com/text_manager#meta/text_manager.cm",
13    },
14  ],
15  offer: [
16    {
17      protocol: "fuchsia.logger.LogSink",
18      from: "parent",
19      to: [
20        "#isolated_a11y_manager",
21        "#isolated_text_manager",
22      ],
23    },
24  ],
25  use: [
26    {
27      protocol: [
28        "fuchsia.ui.composition.Allocator",
29        "fuchsia.ui.composition.Flatland",
30      ],
31    },
32    {
33      protocol: "fuchsia.accessibility.semantics.SemanticsManager",
34      from: "#isolated_a11y_manager",
35    },
36    {
37      protocol: "fuchsia.ui.input3.Keyboard",
38      from: "#isolated_text_manager",
39    },
40  ],
41}
42