blob: 8b21f76e579c4a785ff0a0523c91d8b80518f736 [file] [log] [blame]
# Copyright 2016 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/fidl/fidl.gni")
fidl("fuchsia.net.mdns") {
excluded_checks = [
# Some protocols are implemented by the client, so they have client-initiated events that
# should not be prefixed by 'On'.
"event-names-must-start-with-on",
# 'Service' is used in this context to refer to DNS-SD services, not FIDL services.
"protocol-name-includes-service",
"invalid-case-for-decl-name",
]
sdk_category = "partner"
sdk_area = "Unknown"
sources = [
"common.fidl",
"host_name_resolver.fidl",
"host_name_subscriber.fidl",
"mdns.fidl",
"overview.fidl",
"proxy_host_publisher.fidl",
"service_instance_publisher.fidl",
"service_instance_resolver.fidl",
"service_subscriber.fidl",
]
public_deps = [
"//sdk/fidl/fuchsia.net",
"//zircon/vdso/zx",
]
enable_hlcpp = true
}