| # Copyright 2019 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/host.gni") |
| import("//build/test.gni") |
| |
| if (is_host) { |
| test("dockyard_host_test") { |
| sources = [ |
| "dockyard_fake.cc", |
| "dockyard_host_test.cc", |
| ] |
| |
| deps = [ |
| "//src/developer/system_monitor/bin/dockyard_host:lib", |
| "//src/developer/system_monitor/lib:lib", |
| "//src/developer/system_monitor/lib/dockyard:headers", |
| "//src/developer/system_monitor/lib/dockyard:proto", |
| "//src/lib/fxl/test:gtest_main", |
| "//third_party/googletest:gtest", |
| "//third_party/grpc:grpc++", |
| ] |
| } |
| } |