blob: 71c4bcd1608ee24ad27e5c4beebc7fd94b48bd68 [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 = "listen"
sources = [
"listen.cc",
]
deps = [
"//garnet/lib/chrealm",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fdio",
"//zircon/public/lib/zx",
]
}
package("listen") {
deps = [
":bin",
]
binary = "listen"
meta = [
{
path = rebase_path("meta/listen.cmx")
dest = "listen.cmx"
},
]
}