| # Copyright 2022 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/components.gni") |
| import("//build/test.gni") |
| |
| test("wlan_drivers_timer_test") { |
| sources = [ "timer_test.cc" ] |
| deps = [ |
| "//sdk/lib/async-loop:async-loop-cpp", |
| "//src/connectivity/wlan/drivers/lib/timer:cpp", |
| "//src/devices/testing/no_ddk", |
| "//zircon/system/ulib/mock-function", |
| "//zircon/system/ulib/zxtest", |
| ] |
| } |
| |
| fuchsia_unittest_package("wlan-drivers-timer-tests") { |
| deps = [ ":wlan_drivers_timer_test" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":wlan-drivers-timer-tests" ] |
| } |