xref: /aosp_15_r20/external/cronet/build/config/fuchsia/test/test_ui_stack.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  include: [ "//build/config/fuchsia/test/sysmem.shard.test-cml" ],
6  children: [
7    {
8      name: "test_ui_stack",
9      url: "fuchsia-pkg://fuchsia.com/flatland-scene-manager-test-ui-stack#meta/test-ui-stack.cm",
10    },
11  ],
12  use: [
13    {
14      protocol: [
15        "fuchsia.accessibility.semantics.SemanticsManager",
16        "fuchsia.element.GraphicalPresenter",
17        "fuchsia.ui.composition.Allocator",
18        "fuchsia.ui.composition.Flatland",
19        "fuchsia.ui.input3.Keyboard",
20      ],
21      from: "#test_ui_stack",
22    },
23  ],
24  offer: [
25    {
26      storage: "tmp",
27      from: "parent",
28      to: "#test_ui_stack",
29    },
30    {
31      protocol: [
32        "fuchsia.logger.LogSink",
33        "fuchsia.scheduler.ProfileProvider",
34        "fuchsia.sysmem.Allocator",
35        "fuchsia.tracing.provider.Registry",
36        "fuchsia.vulkan.loader.Loader",
37      ],
38      from: "parent",
39      to: "#test_ui_stack",
40    },
41  ],
42  facets: {
43    "fuchsia.test": {
44      "deprecated-allowed-packages": [ "flatland-scene-manager-test-ui-stack" ],
45    },
46  },
47}
48