blob: a21bd93fdf1376a13fe7386e69d631cbbe9fba1f [file] [log] [blame]
# Copyright 2017 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("test_settings") {
sources = [
"test_settings.cc",
"test_settings.h",
]
public_deps = [
"//sdk/lib/syslog/cpp",
"//src/lib/fxl:fxl_cli",
]
}
# Generic main entry point target for non-testonly GTest executables.
source_set("gtest_main_no_testonly") {
sources = [ "run_all_unittests.cc" ]
deps = [
":test_settings",
"//src/lib/fxl:fxl_cli",
]
public_deps = [
"//sdk/lib/syslog/cpp",
"//third_party/googletest:gtest_no_testonly",
]
}
# Generic main entry point target for GTest executables.
source_set("gtest_main") {
testonly = true
public_deps = [ ":gtest_main_no_testonly" ]
}