blob: 11e09bedd8a9439d904edd31ca02e0b92c19f945 [file] [log] [blame]
# Copyright 2016 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 = "postfile"
sources = [ "postfile.cc" ]
deps = [
"//sdk/fidl/fuchsia.net.oldhttp",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
]
}
package("postfile") {
deps = [ ":bin" ]
binaries = [
{
name = "postfile"
shell = true
},
]
}