blob: 2ef31e65ac8e4e47c6ffc9c7d10bc3f34742d358 [file] [log] [blame]
# Copyright 2020 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/config.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("bin") {
name = "launcher"
edition = "2018"
deps = [
"//src/diagnostics/detect:lib",
"//src/diagnostics/lib/util/v2-argh-wrapper",
"//src/diagnostics/log-stats:lib",
"//src/diagnostics/persistence:lib",
"//src/diagnostics/sampler:lib",
"//src/lib/fuchsia-async",
"//src/lib/syslog/rust:syslog",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
]
sources = [ "src/main.rs" ]
}