blob: c3774dab22067e1246379cda0f54e99f96813f4e [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")
import("//build/testing/environments.gni")
rustc_library("wlan-span") {
name = "wlan_span"
version = "0.1.0"
with_unit_tests = true
edition = "2018"
sources = [ "src/lib.rs" ]
}
unittest_package("wlan-span-tests") {
deps = [ ":wlan-span_test" ]
tests = [
{
name = "wlan_span_lib_test"
environments = basic_envs
},
]
}