blob: c72177cdf18ec723cec41ebc10e7642b668564de [file] [log] [blame]
# Copyright 2016 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.
source_set("gtest") {
testonly = true
sources = [
"real_loop_fixture.cc",
"real_loop_fixture.h",
"test_loop_fixture.cc",
"test_loop_fixture.h",
"test_loop_fixture.h",
]
deps = [
"//zircon/public/lib/async-cpp",
]
public_deps = [
"//garnet/public/lib/fxl",
"//third_party/googletest:gtest",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-testutils",
"//zircon/public/lib/fit",
"//zircon/public/lib/zx",
]
}
source_set("unittests") {
testonly = true
sources = [
"real_loop_fixture_unittest.cc",
"test_loop_fixture_unittest.cc",
]
deps = [
":gtest",
"//zircon/public/lib/async-cpp",
]
}