blob: 8eac2ffff82347e3eee3ea60ae7968a63af34f4b [file] [log] [blame]
# 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",
]
}