blob: 84155f563ff973bffc73d499c614e21aae962962 [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.
##########################################
# Though under //zircon, this build file #
# is meant to be used in the Fuchsia GN #
# build. #
# See fxbug.dev/36139. #
##########################################
assert(!defined(zx) || zx != "/",
"This file can only be used in the Fuchsia GN build.")
import("//build/test.gni")
import("//build/testing/bootfs_test.gni")
test("fs-bench") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "fs-bench.cc" ]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_c",
"//sdk/lib/fdio",
"//src/storage/fvm",
"//zircon/public/lib/async",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/fbl",
"//zircon/public/lib/sync",
"//zircon/public/lib/zx",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/digest",
"//zircon/system/ulib/fs",
"//zircon/system/ulib/fs-management",
"//zircon/system/ulib/fs-test-utils",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/gpt",
"//zircon/system/ulib/memfs",
"//zircon/system/ulib/memfs:memfs-cpp",
"//zircon/system/ulib/perftest",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-engine",
"//zircon/system/ulib/trace-provider:trace-provider-with-fdio",
"//zircon/system/ulib/unittest",
]
}
bootfs_test("fs-bench-bootfs-test") {
name = "fs-bench"
deps = [ ":fs-bench" ]
}