blob: fb56b6d43f030e6f48daf8d17efea7ae9e7ff639 [file] [log] [blame]
# 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.
#
import("//build/test/test_package.gni")
group("tests") {
testonly = true
deps = [
":a11y_tests",
]
}
test_package("a11y_tests") {
deps = [
":a11y_manager_apptests",
]
tests = [
{
name = "a11y_manager_apptests"
environments = basic_envs
},
]
}
executable("a11y_manager_apptests") {
output_name = "a11y_manager_apptests"
testonly = true
sources = [
"app_unittest.cc",
]
deps = [
"//garnet/public/lib/fsl",
"//garnet/public/lib/gtest",
"//garnet/public/lib/json",
"//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",
"//sdk/lib/vfs/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/ui/a11y/bin/a11y_manager:lib",
"//src/ui/a11y/bin/a11y_manager/tests/mocks",
"//src/ui/a11y/bin/a11y_manager/tests/util",
"//src/ui/a11y/lib/util",
"//third_party/rapidjson",
]
# This is a dependency of the semantic tree to perform certain matrix transform operations.
include_dirs = [ "//third_party/glm" ]
}