blob: 54df2621a68f78a7b4bb948047f657b8e742f94f [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")
package("util") {
deprecated_bare_package_url = "//build"
deps = [
":bin",
]
binaries = [
{
name = "mdns_util"
shell = true
},
]
package_name = "mdns_util"
meta = [
{
path = rebase_path("meta/mdns_util.cmx")
dest = "mdns_util.cmx"
},
]
}
executable("bin") {
output_name = "mdns_util"
sources = [
"formatting.cc",
"formatting.h",
"main.cc",
"mdns_impl.cc",
"mdns_impl.h",
"mdns_params.cc",
"mdns_params.h",
]
deps = [
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fostr",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/mdns/cpp",
"//garnet/public/fidl/fuchsia.mdns",
"//zircon/public/lib/async-loop-cpp",
]
}