blob: d246bfe04876d70e878e588cd22a07d1c1366958 [file] [log] [blame] [edit]
# 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
deps = [
"conformance",
"dispatcher",
"integration",
"message_container",
"transport",
"wire_types",
]
}
source_set("types_test_utils") {
testonly = true
public = [ "types_test_utils.h" ]
sources = [
"types_test_utils.cc",
"types_test_utils.h",
]
public_deps = [
"//third_party/googletest:gtest",
"//zircon/system/ulib/fidl",
"//zircon/system/ulib/fidl:fidl-llcpp",
]
# TODO(https://fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}