blob: f550d191ae4f8d9e95a2a300ebbf5facf19404f4 [file] [log] [blame]
# Copyright 2018 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 = [
":a11y_manager_apptests",
]
}
executable("a11y_manager_apptests") {
output_name = "a11y_manager_apptests"
testonly = true
sources = [
"settings_manager_test_new.cc",
]
deps = [
"//garnet/bin/a11y/a11y_manager:lib",
"//garnet/bin/a11y/tests/mocks",
"//garnet/public/lib/gtest",
"//garnet/public/lib/syslog/cpp",
"//sdk/fidl/fuchsia.accessibility",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:unit",
"//third_party/googletest:gtest_main",
]
# This is a dependency of the semantic tree to perform certain matrix transform operations.
include_dirs = [ "//third_party/glm" ]
}