blob: a7d372b10ca4fe179dabbf5f290539578898141c [file] [log] [blame]
# Copyright 2022 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/components.gni")
executable("bin") {
testonly = true
output_name = "server_suite_harness"
sources = [
"harness.cc",
"harness.h",
"ordinals.h",
"tests.cc",
]
deps = [
"//sdk/lib/fdio",
"//sdk/lib/fidl",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//src/tests/fidl/server_suite/fidl:fidl.serversuite_cpp",
"//third_party/googletest:gtest",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/service:service-llcpp",
]
}