blob: a0c8804b481a5b82973784149047cde414644c6c [file] [log] [blame]
# Copyright 2024 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_memfs"
sources = [ "harness.cc" ]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_cpp",
"//sdk/fidl/fuchsia.io.test:fuchsia.io.test_cpp",
"//sdk/lib/component/outgoing/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl",
"//src/storage/lib/vfs/cpp",
"//src/storage/memfs:lib",
"//zircon/system/ulib/async",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
}
storage_conformance_test("memfs") {
harness_manifest = "meta/memfs_harness.cml"
harness_binary = ":bin"
}