Source code
Revision control
Copy as Markdown
Other Tools
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
include: [ "//chromium/build/config/fuchsia/test/sysmem.shard.test-cml" ],
children: [
{
name: "test_ui_stack",
},
],
use: [
{
protocol: [
"fuchsia.accessibility.semantics.SemanticsManager",
"fuchsia.element.GraphicalPresenter",
"fuchsia.ui.composition.Allocator",
"fuchsia.ui.composition.Flatland",
"fuchsia.ui.input3.Keyboard",
],
from: "#test_ui_stack",
},
],
offer: [
{
storage: "tmp",
from: "parent",
to: "#test_ui_stack",
},
{
protocol: [
"fuchsia.scheduler.ProfileProvider",
"fuchsia.sysmem.Allocator",
"fuchsia.sysmem2.Allocator",
"fuchsia.tracing.provider.Registry",
"fuchsia.vulkan.loader.Loader",
],
from: "parent",
to: "#test_ui_stack",
},
{
dictionary: "diagnostics",
from: "parent",
to: "#test_ui_stack",
},
],
facets: {
"fuchsia.test": {
"deprecated-allowed-packages": [ "flatland-scene-manager-test-ui-stack" ],
},
},
}