| # 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/components.gni") |
| import("//build/drivers.gni") |
| import("//build/test.gni") |
| |
| test("synchronous-executor-test") { |
| output_name = "synchronous-executor-test" |
| sources = [ "executor-test.cc" ] |
| deps = [ |
| "//sdk/lib/fdio", |
| "//sdk/lib/fit-promise", |
| "//src/devices/lib/synchronous-executor", |
| "//src/devices/testing/fake-object", |
| "//zircon/system/ulib/fbl", |
| "//zircon/system/ulib/zx", |
| "//zircon/system/ulib/zxtest", |
| ] |
| } |
| |
| fuchsia_unittest_package("synchronous-executor-test-package") { |
| deps = [ ":synchronous-executor-test" ] |
| } |