blob: 4f46f188453f7ff9e8c876c70d935db01f5186a4 [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/rust/rustc_library.gni")
import("//build/test/test_package.gni")
rustc_library("wlan-bitfield-wrapper") {
name = "wlan-bitfield-wrapper"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//src/connectivity/wlan/lib/bitfield:wlan-bitfield",
]
}
test_package("wlan-bitfield-tests") {
deps = [
":wlan-bitfield-wrapper_test",
]
tests = [
{
name = "wlan_bitfield_wrapper_lib_test"
environments = basic_envs
},
]
}