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