blob: 4701d16d1508c806310af50cb5617783d9119ed1 [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",
]
public_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" ]
}