blob: 16206f6777a44a878b96b03e886df13932b7f494 [file] [log] [blame]
# Copyright 2024 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("common") {
testonly = true
name = "drivers_only_common"
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.driver.test:fuchsia.driver.test_rust",
"//sdk/fidl/fuchsia.io:fuchsia.io_rust",
"//sdk/fidl/fuchsia.wlan.common:fuchsia.wlan.common_rust",
"//sdk/fidl/fuchsia.wlan.ieee80211:fuchsia.wlan.ieee80211_rust",
"//sdk/fidl/fuchsia.wlan.sme:fuchsia.wlan.sme_rust",
"//sdk/lib/device-watcher/rust",
"//src/connectivity/wlan/tests/helpers/realm-factory/fidl:test.wlan.realm_rust",
"//src/connectivity/wlan/tests/helpers/test-realm-helpers",
"//src/connectivity/wlan/tests/helpers/testcontroller-driver/fidl:test.wlan.testcontroller_rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-component",
"//src/lib/fuchsia-fs",
"//src/testing/realm_client/rust",
"//third_party/rust_crates:log",
"//third_party/rust_crates:rand",
]
sources = [
"src/lib.rs",
"src/sme_helpers.rs",
]
}