blob: a757bab71cb3cdf271528103dd39cf3b996b0525 [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")
rustc_library("test-code") {
edition = "2021"
name = "ot_test_code"
deps = [
"//sdk/fidl/fuchsia.lowpan.spinel:fuchsia.lowpan.spinel-rustc",
"//src/connectivity/openthread/tests/lib",
"//src/lib/syslog/rust:syslog",
]
non_rust_deps = [ "//zircon/system/ulib/syslog" ]
sources = [
"src/constants.rs",
"src/lib.rs",
"src/spinel_device_ncp_ver_query.rs",
"src/spinel_device_soft_reset.rs",
]
}