blob: c19b4ac175609b446b9453a67b144616aa9efca2 [file] [log] [blame]
# 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")
if (current_toolchain == host_toolchain) {
executable("dockyard_host") {
sources = [
"dockyard_host.cc",
]
deps = [
"//third_party/grpc:grpc++",
"//garnet/lib/system_monitor/dockyard:lib",
]
}
}
install_host_tools("host_tools") {
deps = [
":dockyard_host",
]
outputs = [
"dockyard_host",
]
}