blob: cd0e30503957360f576745c7f25eb5a631fdb2d8 [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_library.gni")
rustc_library("wlan-mlme") {
name = "wlan_mlme"
version = "0.1.0"
with_unit_tests = true
edition = "2018"
deps = [
"//garnet/lib/rust/wlan-common",
"//third_party/rust-crates/rustc_deps:failure",
]
}
package("wlan-mlme-tests") {
testonly = true
deps = [
":wlan-mlme",
]
tests = [
{
name = "wlan_mlme_lib_test"
},
]
}