blob: e54ac521afe755db2a2a73e4d7afd646b8bb0723 [file] [log] [blame]
# Copyright 2018 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") {
testonly = true
output_name = "netemul_runner"
sources = [
"main.cc",
"runner.cc",
"runner.h",
]
deps = [
"//garnet/lib/cmx:cmx",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/pkg_url",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/sys/cpp",
"//third_party/rapidjson",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/async-default",
"//zircon/public/lib/async-loop-cpp",
]
}
package("netemul_runner") {
testonly = true
deps = [
":bin",
"//garnet/bin/netemul_runner:netemul_sandbox",
]
binary = "netemul_runner"
meta = [
{
path = rebase_path("meta/netemul_runner.cmx")
dest = "netemul_runner.cmx"
},
]
}