Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / lib / mdns / BUILD.gn
1 # Copyright (c) 2020 Project CHIP Authors
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import("//build_overrides/chip.gni")
16 import("${chip_root}/src/platform/device.gni")
17
18 source_set("platform_header") {
19   sources = [ "platform/Mdns.h" ]
20 }
21
22 static_library("mdns") {
23   public_deps = [
24     ":platform_header",
25     "${chip_root}/src/lib/core",
26     "${chip_root}/src/lib/support",
27   ]
28
29   sources = [
30     "Advertiser.h",
31     "Resolver.h",
32     "ServiceNaming.cpp",
33     "ServiceNaming.h",
34   ]
35
36   if (chip_mdns == "none") {
37     sources += [
38       "Advertiser_ImplNone.cpp",
39       "Resolver_ImplNone.cpp",
40     ]
41   } else if (chip_mdns == "minimal") {
42     sources += [
43       "Advertiser_ImplMinimalMdns.cpp",
44       "Resolver_ImplNone.cpp",
45     ]
46     public_deps += [ "${chip_root}/src/lib/mdns/minimal" ]
47   } else if (chip_mdns == "platform") {
48     sources += [
49       "Discovery_ImplPlatform.cpp",
50       "Discovery_ImplPlatform.h",
51     ]
52     public_deps += [ "${chip_root}/src/platform" ]
53   } else {
54     assert(false, "Unknown mDNS advertiser implementation.")
55   }
56 }