blob: 06d25ce31b20b4a9b4b495bafe1b119a5318994a [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/package.gni")
import("//build/rust/rustc_library.gni")
import("//build/testing/environments.gni")
rustc_library("test-harness") {
name = "test_harness"
version = "0.1.0"
edition = "2018"
deps = [
"//src/connectivity/bluetooth/lib/test-harness-macro",
"//src/lib/fuchsia-async",
"//src/lib/syslog/rust:syslog",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:pin-utils",
]
sources = [ "src/lib.rs" ]
}