test_ui_stack.shard.test-cml (1316B)
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: [ "//chromium/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.scheduler.ProfileProvider", 33 "fuchsia.sysmem.Allocator", 34 "fuchsia.sysmem2.Allocator", 35 "fuchsia.tracing.provider.Registry", 36 "fuchsia.vulkan.loader.Loader", 37 ], 38 from: "parent", 39 to: "#test_ui_stack", 40 }, 41 { 42 dictionary: "diagnostics", 43 from: "parent", 44 to: "#test_ui_stack", 45 }, 46 ], 47 facets: { 48 "fuchsia.test": { 49 "deprecated-allowed-packages": [ "flatland-scene-manager-test-ui-stack" ], 50 }, 51 }, 52 }