blob: 9c3933be2cfc8269b37ae9aef8ebf16e03cb3e06 [file] [log] [blame]
# Copyright 2018 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/package.gni")
import("//build/rust/rustc_staticlib.gni")
rustc_staticlib("wlan-mlme") {
name = "wlan_mlme"
version = "0.1.0"
with_unit_tests = true
edition = "2018"
deps = [
"//garnet/public/rust/zerocopy",
"//third_party/rust-crates/rustc_deps:bitfield",
"//third_party/rust-crates/rustc_deps:byteorder",
]
non_rust_deps = []
public = [
"abi.h",
]
}
package("wlan-mlme-tests") {
testonly = true
deps = [
":wlan-mlme",
]
tests = [
{
name = "wlan_mlme_staticlib_test"
},
]
}