blob: 7f46710ab08335f3e8d1c2a5c5d8bdcda70f3f3f [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/cpp/sdk_cpp_test.gni")
import("//build/cpp/sdk_cpp_unittest_package.gni")
sdk_cpp_test("bin") {
output_dir = target_out_dir
sources = [ "dispatcher_bound_test.cc" ]
deps = [
"//sdk/lib/async:async-cpp",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async_patterns/testing/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/predicates",
"//third_party/googletest:gtest",
]
testonly = true
}
sdk_cpp_unittest_package("async_patterns_testing_tests") {
sdk_cpp_test_deps = [ ":bin" ]
}
group("tests") {
testonly = true
deps = [ ":async_patterns_testing_tests" ]
}