blob: db569b51d45351901dc0940df3b7214b9172f0cd [file] [log] [blame]
# Copyright 2017 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")
executable("bin") {
output_name = "run"
sources = [
"main.cc",
]
deps = [
"//garnet/public/fidl/fuchsia.sys",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/component/cpp:environment_services",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/zx",
]
}
package("run") {
deps = [
":bin",
]
meta = [
{
dest = "run.cmx"
path = rebase_path(dest)
}
]
binaries = [
{
shell = true
name = "run"
},
]
}