blob: f3b074d2c0e99f5217f9c7c3de9a7d5e5f22b5eb [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/components.gni")
import("//src/sys/core/build/core_shard.gni")
group("ui") {
deps = [
"a11y",
"bin",
"examples",
"input",
"scenic",
"tools",
"wayland",
]
}
group("tests") {
testonly = true
deps = [
"a11y:tests",
"backlight:tests",
"bin:tests",
"examples:tests",
"input:tests",
"lib:tests",
"light:tests",
"scenic:tests",
"testing:tests",
"tests",
"tools:tests",
"wayland:tests",
]
}
fuchsia_component("ui-component") {
component_name = "ui"
manifest = "meta/ui.cml"
}
core_shard("ui-core-shard") {
shard_file = "meta/ui.core_shard.cml"
}
fuchsia_package("ui_pkg") {
package_name = "ui"
deps = [ ":ui-component" ]
}
group("workstation") {
deps = [
":ui_pkg",
"a11y",
"bin/scene_manager",
]
}