blob: f29adf697e81b91738ba95001f9177497c3eb8f2 [file] [log] [blame]
# Copyright 2018 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/package/component.gni")
import("//build/rust/rustc_binary.gni")
group("rust") {
testonly = true
deps = [
":bin",
]
}
rustc_binary("bin") {
name = "logger_integration"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-syslog",
"//garnet/public/rust/fuchsia-syslog-listener",
"//garnet/public/rust/fuchsia-zircon",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
"//third_party/rust_crates:log",
"//third_party/rust_crates:parking_lot",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:tempfile",
"//zircon/public/fidl/fuchsia-logger:fuchsia-logger-rustc",
]
}