blob: 62179917f4438da4d6fdb09559fdff127f99f92c [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.
import("//build/test/test_package.gni")
group("loop_fixture") {
testonly = true
public_deps = [ ":gtest" ]
}
# Deprecated - new targets should instead depend on:
# //src/lib/testing/loop_fixture
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 = [
"//src/lib/fxl",
"//third_party/googletest:gtest",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
"//zircon/public/lib/fit",
"//zircon/public/lib/zx",
"//zircon/system/ulib/async-testing",
]
public_configs = [ "//garnet/public:config" ]
}
executable("loop_fixture_unittests") {
testonly = true
sources = [
"real_loop_fixture_unittest.cc",
"test_loop_fixture_unittest.cc",
]
deps = [
":loop_fixture",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/fxl/test:test_settings",
"//third_party/googletest:gmock",
"//zircon/public/lib/async-cpp",
]
}
unittest_package("loop_fixture_tests") {
deps = [ ":loop_fixture_unittests" ]
tests = [
{
name = "loop_fixture_unittests"
environments = basic_envs
},
]
}
group("tests") {
testonly = true
deps = [ ":loop_fixture_tests" ]
}