blob: c870804caa23f79f2242ae32802b55bd2729eb49 [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/public/lib/app/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//zircon/public/lib/launchpad",
"//zircon/public/lib/zx",
]
}
package("listen") {
deps = [
":bin",
]
binary = "listen"
meta = [{
path = rebase_path("meta/sandbox")
dest = "sandbox"
}]
}