blob: 85e7d31a78fabf23f418f7cdb7a81571445d6fcb [file] [log] [blame]
# Copyright 2023 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/rust/rustc_binary.gni")
rustc_binary("engine") {
name = "realmfuzzer_coverage_test_engine"
edition = "2021"
testonly = true
sources = [ "src/main.rs" ]
deps = [
"//build/validate:non_production_tag",
"//sdk/rust/zx",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/sys/fuzzing/fidl:fuchsia.fuzzer_rust",
"//third_party/rust_crates:anyhow",
]
}