blob: 659504bff7e49a51e66dc4093a8e76f9adde0c6b [file] [log] [blame]
# 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_chain_manager_tests",
"mocks",
]
}
executable("focus_chain_manager_tests") {
testonly = true
sources = [ "focus_chain_manager_unittest.cc" ]
deps = [
"//garnet/public/lib/gtest",
"//garnet/public/lib/syslog/cpp",
"//sdk/fidl/fuchsia.accessibility.tts",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl/test:gtest_main",
"//src/ui/a11y/lib/focus_chain",
"//src/ui/a11y/lib/screen_reader/focus/tests/mocks",
"//src/ui/a11y/lib/semantics/tests/mocks/",
"//src/ui/a11y/lib/testing",
"//zircon/system/fidl/fuchsia-logger",
]
# TODO(47893): Fix the leaks and remove this.
deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ]
}