blob: f4d77d5e8b29076e836f5a7a6b7b20a866708ebe [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")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
rustc_library("wlan-hasher") {
with_unit_tests = true
edition = "2018"
deps = [
"//src/connectivity/wlan/lib/common/rust:wlan-common",
"//src/lib/mundane",
"//third_party/rust_crates:hex",
]
sources = [ "src/lib.rs" ]
}
unittest_package("wlan-hasher-tests") {
deps = [ ":wlan-hasher_test" ]
tests = [
{
name = "wlan_hasher_lib_test"
environments = basic_envs
},
]
}