blob: c197c6184d72b3e0a2b1e5adf5c2847f38dd698c [file] [log] [blame]
# Copyright 2018 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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("wlan-service-util") {
with_unit_tests = true
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.wlan.common:fuchsia.wlan.common-rustc",
"//sdk/fidl/fuchsia.wlan.device:fuchsia.wlan.device-rustc",
"//sdk/fidl/fuchsia.wlan.device.service:fuchsia.wlan.device.service-rustc",
"//sdk/fidl/fuchsia.wlan.internal:fuchsia.wlan.internal-rustc",
"//sdk/fidl/fuchsia.wlan.sme:fuchsia.wlan.sme-rustc",
"//src/connectivity/wlan/lib/common/rust:wlan-common",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:hex",
"//third_party/rust_crates:pin-utils",
"//third_party/rust_crates:rand",
]
sources = [
"src/ap.rs",
"src/client.rs",
"src/lib.rs",
]
}
fuchsia_unittest_package("wlan-service-util-tests") {
deps = [ ":wlan-service-util_test" ]
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
}