blob: 3d16deac9223b0ab5dce8fc8ac027fd35f74dd19 [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/host.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("pretty_serial") {
name = "pretty_serial"
with_unit_tests = true
edition = "2021"
deps = [
"//third_party/rust_crates:ansi_term",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:log",
"//third_party/rust_crates:regex",
]
sources = [ "src/main.rs" ]
}
install_host_tools("install") {
deps = [ ":pretty_serial" ]
outputs = [ "pretty_serial" ]
}
group("tests") {
testonly = true
deps = [ ":pretty_serial_test($host_toolchain)" ]
}