• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        "fuchsia.ui.scenic.Scenic",
21      ],
22      from: "#test_ui_stack",
23    },
24  ],
25  offer: [
26    {
27      storage: "tmp",
28      from: "parent",
29      to: "#test_ui_stack",
30    },
31    {
32      protocol: [
33        "fuchsia.logger.LogSink",
34        "fuchsia.scheduler.ProfileProvider",
35        "fuchsia.sysmem.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