blob: 72b6ff59be8c96843aa4f804a9169f328e0d8461 [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) {
source_set("lib") {
sources = [
"dockyard_host.cc",
"dockyard_host.h",
]
public_deps = [
"//garnet/lib/system_monitor/dockyard:headers",
"//src/lib/fxl",
]
}
executable("dockyard_host") {
sources = [
"dockyard_main.cc",
]
deps = [
":lib",
"//garnet/lib/system_monitor/dockyard:lib",
]
}
}
install_host_tools("host_tools") {
deps = [
":dockyard_host",
]
outputs = [
"dockyard_host",
]
}