| # Copyright 2018 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.gni") | |
| source_set("lib") { | |
| sources = [ "gt_log.cc" ] | |
| } | |
| group("tests") { | |
| testonly = true | |
| deps = [ | |
| ":gt_log_tests", | |
| "//src/developer/system_monitor/lib/dockyard:tests", | |
| ] | |
| } | |
| test("gt_log_tests") { | |
| testonly = true | |
| sources = [ "gt_log_test.cc" ] | |
| deps = [ | |
| ":lib", | |
| "//src/lib/fxl/test:gtest_main", | |
| "//third_party/googletest:gtest", | |
| ] | |
| } |