blob: 33fe3d98632c9a706bcbb4c064a51d6780768b00 [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.
import("//build/package.gni")
source_set("lib") {
visibility = [ ":*" ]
sources = [
"runner_impl.cc",
"runner_impl.h",
]
public_deps = [
"//garnet/public/lib/component/cpp",
"//garnet/public/fidl/fuchsia.sys",
"//zircon/public/lib/async-loop-cpp",
]
}
executable("bin") {
output_name = "guest_runner"
sources = [
"main.cc",
]
deps = [
":lib",
]
}
package("guest_runner") {
deps = [
":bin",
]
binary = "guest_runner"
}