blob: 2fc4c5cef25ccf1f49da3880fbc1a5928cfce3b6 [file] [edit]
# 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/cpp/sdk_cpp_test.gni")
import("//build/cpp/sdk_cpp_unittest_package.gni")
group("test") {
testonly = true
deps = [ ":async-testing-pkg" ]
}
sdk_cpp_test("async-testing") {
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",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
"//zircon/system/ulib/zx",
]
}
sdk_cpp_unittest_package("async-testing-pkg") {
sdk_cpp_test_deps = [ ":async-testing" ]
}