blob: 017c5c5a4f347a5b83b210db89b022b690e58bc3 [file] [log] [blame]
# Copyright 2019 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.
group("test") {
testonly = true
deps = [
":memfs-tests",
]
}
zx_test("memfs-tests") {
sources = [
"memfs-tests.cc",
]
deps = [
"$zx/system/ulib/async",
"$zx/system/ulib/async:async-cpp",
"$zx/system/ulib/async:async-default",
"$zx/system/ulib/async-loop",
"$zx/system/ulib/async-loop:async-loop-cpp",
"$zx/system/ulib/async-loop:async-loop-default.static",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fs",
"$zx/system/ulib/memfs",
"$zx/system/ulib/memfs:memfs-cpp",
"$zx/system/ulib/sync",
"$zx/system/ulib/zircon-internal",
"$zx/system/ulib/zxtest",
]
}