|  | # 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/async", | 
|  | "//sdk/lib/async:async-cpp", | 
|  | "//sdk/lib/async-default", | 
|  | "//sdk/lib/async-testing", | 
|  | "//sdk/lib/fdio", | 
|  | "//sdk/lib/fit", | 
|  | "//zircon/system/ulib/zx", | 
|  | "//zircon/system/ulib/zxtest", | 
|  | ] | 
|  | } | 
|  |  | 
|  | fuchsia_unittest_package("async-testing-pkg") { | 
|  | deps = [ ":async-testing" ] | 
|  | } |