blob: dfe62b0f16d673ea0e66813d5356826245292e3a [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/rust/rustc_library.gni")
if (is_host) {
rustc_library("lib") {
name = "ffx_core"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"macro:lib",
"version:lib",
"//sdk/fidl/fuchsia.developer.bridge:fuchsia.developer.bridge-rustc",
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol-rustc",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:async-std",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:home",
"//third_party/rust_crates:log",
"//third_party/rust_crates:pin-project",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:thiserror",
]
non_rust_deps = [ "//third_party/boringssl" ]
sources = [ "src/lib.rs" ]
}
}
group("tests") {
testonly = true
deps = [
":lib_test($host_toolchain)",
"macro:tests($host_toolchain)",
"version:tests($host_toolchain)",
]
}