blob: 37905b9fa12fd6881da8464e7b2324ae82a462d0 [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.
config("loop_fixture_config") {
include_dirs = [ "include" ]
}
source_set("loop_fixture") {
testonly = true
sources = [
"real_loop_fixture.cc",
"test_loop_fixture.cc",
]
deps = [
"//third_party/fuchsia-sdk/pkg/async-loop-cpp",
]
public_deps = [
"//third_party/fuchsia-sdk/pkg/async-loop-cpp",
"//third_party/fuchsia-sdk/pkg/async-loop-default",
"//third_party/fuchsia-sdk/pkg/async-testing",
"//third_party/fuchsia-sdk/pkg/fit",
"//third_party/fuchsia-sdk/pkg/zx",
"//third_party/googletest:gtest",
]
public_configs = [ ":loop_fixture_config" ]
}
executable("loop_fixture_unittests") {
testonly = true
sources = [
"real_loop_fixture_unittest.cc",
"test_loop_fixture_unittest.cc",
]
deps = [
":loop_fixture",
"//third_party/fuchsia-sdk/pkg/async-loop-cpp",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest_main",
]
}
if (defined(unittest_package)) {
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",
]
}
}