blob: f69f8f9453cda623b1a5c47466b3dc51e44d388e [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("wlan-bitfield-wrapper") {
name = "wlan-bitfield-wrapper"
version = "0.1.0"
edition = "2021"
with_unit_tests = true
deps = [ "//src/connectivity/wlan/lib/bitfield:wlan-bitfield" ]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("wlan-bitfield-tests") {
deps = [ ":wlan-bitfield-wrapper_test" ]
}