| # Copyright 2022 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("//build/components.gni") |
| import("//build/rust/rustc_library.gni") |
| |
| rustc_library("testing") { |
| name = "fuchsia_fuzzctl_test" |
| edition = "2021" |
| testonly = true |
| sources = [ |
| "src/controller.rs", |
| "src/diagnostics.rs", |
| "src/input.rs", |
| "src/lib.rs", |
| "src/manager.rs", |
| "src/options.rs", |
| "src/test.rs", |
| "src/util.rs", |
| "src/writer.rs", |
| ] |
| deps = [ |
| "..:lib", |
| "//sdk/rust/zx-status", |
| "//src/lib/diagnostics/data", |
| "//src/lib/fidl/rust/fidl", |
| "//src/lib/fuchsia-async", |
| "//src/sys/fuzzing/fidl:fuchsia.fuzzer_rust", |
| "//third_party/rust_crates:anyhow", |
| "//third_party/rust_crates:futures", |
| "//third_party/rust_crates:serde_json", |
| "//third_party/rust_crates:tempfile", |
| ] |
| } |