blob: 2c2e226e8b259c5df4c955830fb4f962adc12dd3 [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/go/go_library.gni")
import("//build/go/go_test.gni")
go_library("mdns") {
sources = [
"mdns.go",
"mdns_test.go",
]
deps = [
"//third_party/golibs:golang.org/x/net",
"//tools/lib/logger",
]
}
go_test("mdns_tests") {
library = ":mdns"
# TODO(awdavies): The default name conflicts w/ the connectivity service.
output_name = "mdns_tools_test"
deps = [ "//third_party/golibs:github.com/google/go-cmp" ]
}