blob: e9049958068d7befdeac108d1bef05eea15e873b [file]
# 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/ffx_plugin.gni")
ffx_plugin("ffx_log") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
args_with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.diagnostics:fuchsia.diagnostics-rustc",
"//src/developer/ffx:ffx_lib_args",
"//src/developer/ffx/logger/data:lib",
"//src/developer/ffx/logger/test_utils:lib",
"//src/developer/ffx/logger/utils:lib",
"//src/lib/diagnostics/data/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:async-std",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:chrono",
"//third_party/rust_crates:serde_json",
]
sources = [
"src/args.rs",
"src/lib.rs",
]
}