blob: 98a2fbdf0ac865bec050c3773c000451ed1d34c9 [file] [log] [blame] [edit]
# 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 = [ ":semantics_util_tests" ]
}
cc_test_executable("semantics_util_tests") {
output_name = "semantics_util_tests"
testonly = true
sources = [ "semantic_transform_unittest.cc" ]
deps = [
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//src/ui/a11y/lib/semantics/util",
]
# TODO(https://fxbug.dev/42136089): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}