blob: ee0ac8ecc1b3efc3eefe730a95ffffa0933f849d [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 = [
"//garnet/public/lib/fsl",
"//sdk/fidl/fuchsia.net.oldhttp",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
]
}
package("postfile") {
deps = [
":bin",
]
binaries = [
{
name = "postfile"
shell = true
},
]
}