blob: a1132aae03f510713e5fbe3ddb97fb99bafbe10d [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.
import("//build/testing/cc_test_executable.gni")
group("tests") {
testonly = true
public_deps = [ ":a11y_util_tests" ]
}
cc_test_executable("a11y_util_tests") {
testonly = true
sources = [ "boot_info_manager_test.cc" ]
deps = [
"//sdk/fidl/fuchsia.feedback:fuchsia.feedback_hlcpp",
"//sdk/lib/sys/cpp/testing:unit",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//src/ui/a11y/lib/util",
"//third_party/googletest:gtest",
]
}