blob: cc85d01485c4237ce268b9611ab15e3d06742a1d [file] [log] [blame]
# 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",
]
}