|  | # Copyright 2020 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") | 
|  |  | 
|  | rustc_library("isolated-devmgr") { | 
|  | edition = "2018" | 
|  |  | 
|  | # TODO(fxbug.dev/45790): this should be true. wlanstack depends on this because it is | 
|  | # built for both real devices and integration tests. Those cases need to be | 
|  | # separated into different binaries so that this can be testonly. | 
|  | testonly = false | 
|  |  | 
|  | deps = [ | 
|  | "//sdk/fidl/fuchsia.io:fuchsia.io-rustc", | 
|  | "//src/connectivity/wlan/lib/wlan_dev", | 
|  | "//src/connectivity/wlan/testing/wlan-devmgr/fidl:devmgr-rustc", | 
|  | "//src/lib/fdio/rust:fdio", | 
|  | "//src/lib/fidl/rust/fidl", | 
|  | "//src/lib/fuchsia-component", | 
|  | "//src/lib/zircon/rust:fuchsia-zircon", | 
|  | ] | 
|  |  | 
|  | sources = [ "src/lib.rs" ] | 
|  | } |