blob: 74e6e5a2571af137517e520d2fa7542cd7ebb86c [file] [log] [blame] [edit]
# 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 = "network_loader"
sources = [
"main.cc",
]
deps = [
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/app/fidl",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/net/oldhttp/fidl",
]
}
package("network_loader") {
deps = [
":bin",
]
binary = "network_loader"
}
OSZAR »