blob: 76b2fde6ee0bd16c374027cc2ce9ec6f7b82802b [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")
group("ui") {
testonly = true
deps = [
"a11y",
"bin",
"examples",
"input",
"scenic",
"tools",
]
}
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",
]
}
fuchsia_component("ui_component") {
component_name = "ui"
manifest = "meta/ui.cml"
deps = []
}
fuchsia_package("ui_package") {
package_name = "ui"
deps = [ ":ui_component" ]
}
fuchsia_component("ui_with_synthetic_device_support_component") {
component_name = "ui"
manifest = "meta/ui_with_synthetic_device_support.cml"
deps = [ "//src/ui/testing/input_helper:input-helper-component" ]
}
fuchsia_package("ui_with_synthetic_device_support_package") {
package_name = "ui"
deps = [ ":ui_with_synthetic_device_support_component" ]
}