blob: 730185ca1c92f80676d31b02565c87141ea7365b [file] [log] [blame]
# 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.
import("//build/components/fuchsia_test_component.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("fake_boot_arguments-binary") {
testonly = true
name = "fake_boot_arguments"
edition = "2021"
source_root = "src/fake_boot_arguments.rs"
sources = [ "src/fake_boot_arguments.rs" ]
deps = [
"//sdk/fidl/fuchsia.boot:fuchsia.boot-rustc",
"//sdk/fidl/fuchsia.io:fuchsia.io-rustc",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/fuchsia-fs",
"//src/lib/syslog/rust:syslog",
"//src/sys/pkg/lib/fuchsia-merkle",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:futures",
]
}