| # 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. |
| |
| group("testing") { |
| testonly = true |
| |
| public_deps = [ |
| ":formatting", |
| ":input", |
| ":view_ref_helper", |
| ] |
| } |
| |
| source_set("formatting") { |
| testonly = true |
| |
| public = [ "formatting.h" ] |
| |
| sources = [ "formatting.cc" ] |
| |
| public_deps = [ |
| "//src/ui/lib/glm_workaround", |
| "//zircon/public/lib/zx", |
| ] |
| } |
| |
| source_set("input") { |
| testonly = true |
| |
| public = [ "input.h" ] |
| |
| sources = [ "input.cc" ] |
| |
| public_deps = [ |
| "//sdk/fidl/fuchsia.ui.input", |
| "//sdk/fidl/fuchsia.ui.input.accessibility", |
| "//src/ui/lib/glm_workaround", |
| ] |
| } |
| |
| source_set("view_ref_helper") { |
| testonly = true |
| |
| public = [ "view_ref_helper.h" ] |
| |
| sources = [ "view_ref_helper.cc" ] |
| |
| public_deps = [ |
| "//sdk/fidl/fuchsia.ui.views", |
| "//sdk/lib/syslog/cpp", |
| "//src/lib/fsl", |
| "//src/lib/fxl", |
| "//src/ui/a11y/lib/util", |
| ] |
| } |