blob: bc536f2ba21e826aff5542e0f4265919000cd272 [file] [log] [blame]
# 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/test/test_package.gni")
import("//build/testing/environments.gni")
executable("bin") {
testonly = true
output_name = "io_conformance_harness_sdkcpp"
sources = [ "harness.cc" ]
deps = [
"//sdk/fidl/fuchsia.io",
"//sdk/fidl/fuchsia.io.test",
"//sdk/lib/fdio",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//sdk/lib/vfs/cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}