blob: 1da96e1adbf151c44654aa3c0b83ae15ac8aa022 [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.
group("tests") {
testonly = true
public_deps = [
":semantics_manager_tests",
]
}
executable("semantics_manager_tests") {
output_name = "semantics_manager_tests"
testonly = true
sources = [
"semantic_tree_parser.cc",
"semantic_tree_parser.h",
"semantic_tree_parser_test.cc",
"semantics_manager_test.cc",
]
public_deps = [
"//sdk/fidl/fuchsia.accessibility.semantics",
]
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/lib/semantics",
"//src/ui/a11y/lib/semantics/tests/mocks",
"//third_party/rapidjson",
]
# This is a dependency of the semantic tree to perform certain matrix transform operations.
include_dirs = [ "//third_party/glm" ]
}