blob: 629082ed57145a9a9e29d7dd30502609cb981891 [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_tests" ]
}
executable("semantics_tests") {
output_name = "semantics_tests"
testonly = true
sources = [
"semantic_tree_parser.cc",
"semantic_tree_parser.h",
"semantic_tree_parser_test.cc",
"semantic_tree_service_unittest.cc",
"tree_unittest.cc",
]
public_deps = [ "//sdk/fidl/fuchsia.accessibility.semantics" ]
deps = [
"//garnet/public/lib/gtest",
"//garnet/public/lib/json",
"//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/fsl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/syslog/cpp",
"//src/ui/a11y/lib/semantics",
"//src/ui/a11y/lib/semantics/tests/mocks",
"//third_party/googletest:gmock",
"//third_party/rapidjson",
]
# This is a dependency of the semantic tree to perform certain matrix transform operations.
include_dirs = [ "//third_party/glm" ]
}