blob: 26d527ebb591c7305659ab6627555351aa93f9b4 [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.
source_set("tests") {
testonly = true
deps = [
":test_timer_test",
]
}
source_set("run_all_tests") {
testonly = true
sources = [
"run_all_tests.cc",
]
deps = [
"//third_party/googletest:gtest",
]
}
source_set("csv_writer") {
testonly = true
sources = [
"csv_writer.h",
]
}
source_set("test_timer") {
testonly = true
sources = [
"test_timer.cc",
"test_timer.h",
]
deps = [
"//garnet/lib/overnet/environment:timer",
"//garnet/lib/overnet/vocabulary:optional",
]
}
source_set("test_timer_test") {
testonly = true
sources = [
"test_timer_test.cc",
]
deps = [
":test_timer",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}
source_set("trace_cout") {
testonly = true
sources = [
"trace_cout.cc",
"trace_cout.h",
]
deps = [
"//garnet/lib/overnet/environment:timer",
"//garnet/lib/overnet/environment:trace",
]
}