blob: c7170a9978b4589a0caa89ab53969815318a575b [file] [log] [blame]
# Copyright 2019 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("wep_deprecated") {
name = "wep_deprecated"
version = "0.1.0"
with_unit_tests = true
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.wlan.ieee80211:fuchsia.wlan.ieee80211_rust",
"//sdk/fidl/fuchsia.wlan.mlme:fuchsia.wlan.mlme_rust",
"//src/connectivity/wlan/lib/common/rust:wlan-common",
"//src/connectivity/wlan/lib/ieee80211",
"//third_party/rust_crates:hex",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("wep-deprecated-tests") {
deps = [ ":wep_deprecated_test" ]
}