| # 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" ] |
| } |