blob: 2cef853914d391e9662774175c6ec88ee6e9aa53 [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")
if (is_host) {
rustc_binary("scrutiny_x_smoke_test") {
output_name = "scrutiny_x_smoke_test"
edition = "2021"
source_root = "src/main.rs"
sources = [ "src/main.rs" ]
deps = [
"//src/security/lib/scrutiny/x:scrutiny_x",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:tracing",
"//third_party/rust_crates:tracing-subscriber",
]
}
}