blob: de9ba915038163ab2000320942319d9ae941a994 [file] [log] [blame]
# Copyright 2019 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")
group("test") {
testonly = true
deps = [ ":async-testing-pkg" ]
}
test("async-testing") {
output_name = "async-testing-test"
sources = [ "test_loop_tests.cc" ]
deps = [
"//sdk/lib/fdio",
"//sdk/lib/fit",
"//zircon/system/ulib/async",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-testing",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("async-testing-pkg") {
deps = [ ":async-testing" ]
}