blob: cca7f6754cba5daf326d12ebb17a0aa282ea1e25 [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("eapol") {
with_unit_tests = true
edition = "2021"
deps = [
"//src/connectivity/wlan/lib/bitfield:wlan-bitfield",
"//src/connectivity/wlan/lib/common/rust:wlan-common",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:log",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:zerocopy",
]
test_deps = [ "//third_party/rust_crates:assert_matches" ]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("eapol-tests") {
deps = [ ":eapol_test" ]
}