blob: 23024e2a0d876b2e48bfa0d9b8d83fac931453f9 [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 = "mwget"
sources = [
"mwget.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("mwget") {
deps = [
":bin",
]
binaries = [
{
name = "mwget"
shell = true
},
]
}