| # Copyright 2020 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("tests") { |
| testonly = true |
| public_deps = [ ":focus_manager_tests" ] |
| } |
| |
| executable("focus_manager_tests") { |
| output_name = "focus_manager_tests" |
| |
| testonly = true |
| sources = [ "a11y_focus_manager_tests.cc" ] |
| |
| deps = [ |
| "//garnet/public/lib/gtest", |
| "//sdk/fidl/fuchsia.ui.views", |
| "//sdk/lib/fidl/cpp", |
| "//sdk/lib/sys/cpp", |
| "//sdk/lib/sys/cpp/testing:unit", |
| "//sdk/lib/syslog/cpp", |
| "//src/lib/fxl/test:gtest_main", |
| "//src/ui/a11y/lib/annotation/tests/mocks", |
| "//src/ui/a11y/lib/focus_chain/tests/mocks", |
| "//src/ui/a11y/lib/screen_reader/focus", |
| "//src/ui/a11y/lib/screen_reader/focus/tests/mocks", |
| "//src/ui/a11y/lib/testing", |
| ] |
| |
| # TODO(47898): Fix the leaks and remove this. |
| deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ] |
| } |