blob: 563b7e854dfddc032d2b4d08f3c340875fdd0c2f [file] [edit]
# 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/rust/rustc_library.gni")
rustc_library("lib") {
name = "ffx_log_utils"
version = "0.1.0"
edition = "2021"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol_rust",
"//src/lib/fidl/rust/fidl",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
data_deps = [ "//tools/symbolizer:symbolizer($host_toolchain)" ]
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
public_deps = [ ":lib_test" ]
}