xref: /aosp_15_r20/external/angle/build/config/fuchsia/test/test_ui_stack.shard.test-cml (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
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.sysmem2.Allocator",
36        "fuchsia.tracing.provider.Registry",
37        "fuchsia.vulkan.loader.Loader",
38      ],
39      from: "parent",
40      to: "#test_ui_stack",
41    },
42  ],
43  facets: {
44    "fuchsia.test": {
45      "deprecated-allowed-packages": [ "flatland-scene-manager-test-ui-stack" ],
46    },
47  },
48}
49