blob: 08c183f0b9852558a687fa5a49c3ad31b30c590a [file] [log] [blame]
# Copyright 2023 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")
executable("bin") {
output_dir = target_out_dir
output_name = "async_patterns_testing_unittests"
sources = [ "dispatcher_bound_test.cc" ]
deps = [
"//sdk/lib/async_patterns/testing/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/predicates",
"//third_party/googletest:gtest",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
]
testonly = true
}
fuchsia_unittest_package("async_patterns_testing_tests") {
deps = [ ":bin" ]
}
group("tests") {
testonly = true
deps = [ ":async_patterns_testing_tests" ]
}