blob: 2bde8b5ab076b83faa4308d3b0bdd874c37e6a92 [file] [log] [blame]
# Copyright 2021 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.
source_set("load_generator_lib") {
testonly = true
sources = [ "load_generator.cc" ]
deps = [
"//third_party/googletest:gtest",
"//zircon/system/ulib/fbl",
]
public_deps = [
"//src/storage/blobfs/test:test_utils",
"//zircon/public/lib/zircon-internal",
"//zircon/system/ulib/fbl",
]
}
executable("load_generator") {
output_name = "blobfs_load_generator"
testonly = true
sources = [ "main.cc" ]
deps = [ ":load_generator_lib" ]
}