blob: abb51efdad6005e06a60615c769033ee4fe42ca0 [file] [log] [blame]
# Copyright 2021 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 = "dyn_suite_harness"
sources = [
"harness.cc",
"harness.h",
"main.cc",
]
deps = [
"//sdk/lib/fdio",
"//src/lib/fxl",
"//src/lib/fxl/test:test_settings",
"//src/lib/testing/loop_fixture",
"//src/tests/fidl/dyn_suite/fidl.dynsuite:fidl.dynsuite_cpp",
"//third_party/googletest:gtest",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fidl",
"//zircon/system/ulib/service:service-llcpp",
]
}