| # 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-span") { | |
| name = "wlan_span" | |
| version = "0.1.0" | |
| with_unit_tests = true | |
| edition = "2021" | |
| sources = [ "src/lib.rs" ] | |
| } | |
| fuchsia_unittest_package("wlan-span-tests") { | |
| deps = [ ":wlan-span_test" ] | |
| } |