blob: 0b2d787abaf56f0f699a3eef5e6f45cf0d496591 [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") {
testonly = true
sources = [
"test_settings.cc",
"test_settings.h",
]
deps = [
"//src/lib/fxl",
]
}
# Generic main entry point target for GTest executables.
source_set("gtest_main") {
testonly = true
sources = [
"run_all_unittests.cc",
]
deps = [
":test_settings",
"//src/lib/fxl",
]
public_deps = [
"//third_party/googletest:gtest",
]
}