blob: 07c997a57bee6b39380f2cb82475a4e78790cde5 [file] [log] [blame]
# Copyright 2023 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("//src/storage/conformance/storage_conformance_test.gni")
executable("bin") {
testonly = true
output_name = "io_conformance_harness_sdkcpp"
sources = [ "harness.cc" ]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_cpp",
"//sdk/fidl/fuchsia.io.test:fuchsia.io.test_cpp",
"//sdk/lib/async-default",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
"//sdk/lib/component/outgoing/cpp",
"//sdk/lib/syslog/cpp",
"//sdk/lib/vfs/cpp",
"//src/testing/fidl:placeholders_cpp",
]
}
storage_conformance_test("sdkcpp") {
harness_manifest = "meta/sdkcpp_harness.cml"
harness_binary = ":bin"
}