| # 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/test_package.gni") |
| import("//build/testing/environments.gni") |
| |
| source_set("roughtime_test_lib") { |
| testonly = true |
| sources = [ |
| "common.h", |
| "local_roughtime_server.cc", |
| "local_roughtime_server.h", |
| "settable_time_source.cc", |
| "settable_time_source.h", |
| ] |
| |
| deps = [ |
| "//sdk/fidl/fuchsia.io", |
| "//sdk/lib/sys/cpp", |
| "//sdk/lib/sys/cpp/testing:integration", |
| "//sdk/lib/syslog/cpp", |
| "//sdk/lib/vfs/cpp", |
| "//src/lib/fsl", |
| "//src/lib/fxl", |
| "//src/lib/fxl/test:gtest_main", |
| "//src/sys/time/lib/network_time:lib", |
| "//third_party/boringssl", |
| "//third_party/googletest:gmock", |
| "//third_party/roughtime:client_lib", |
| "//third_party/roughtime:simple_server_lib", |
| ] |
| } |