blob: 839a31c51d03ee06cb59ddd944e19bd74fda0754 [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 (host_toolchain == current_toolchain) {
rustc_library("lib") {
name = "ffx_fastboot"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//src/developer/fastboot:lib",
"//src/lib/usb_bulk/rust:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:log",
]
non_rust_deps = [ "//third_party/boringssl" ]
}
}
group("tests") {
testonly = true
deps = [ ":lib_test($host_toolchain)" ]
}