• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2023 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14import("//build/ohos.gni")
15import("//foundation/communication/netmanager_ext/netmanager_ext_config.gni")
16
17ohos_shared_library("mdns_manager") {
18  sources = [
19    "src/mdns_manager.cpp",
20    "src/mdns_service.cpp",
21    "src/protocol/mdns_packet_parser.cpp",
22    "src/protocol/mdns_protocol_impl.cpp",
23    "src/protocol/mdns_socket_listener.cpp",
24    "src/stub/mdns_event_proxy.cpp",
25    "src/stub/mdns_service_stub.cpp",
26  ]
27
28  include_dirs = [
29    "$BASE_INNERKITS_ROOT/include",
30    "$EXT_INNERKITS_ROOT/mdnsclient/include",
31    "$EXT_INNERKITS_ROOT/mdnsclient/include/proxy",
32    "$EXT_INNERKITS_ROOT/include",
33    "$NETMANAGER_BASE_ROOT/utils/errorcode_utils/include",
34    "include",
35    "include/stub",
36    "include/protocol",
37  ]
38
39  deps = [
40    "$EXT_INNERKITS_ROOT/mdnsclient:mdns_parcel",
41    "$NETMANAGER_BASE_ROOT/utils:net_manager_common",
42    "$NETMANAGER_EXT_ROOT/utils:net_manager_ext_common",
43  ]
44
45  external_deps = [
46    "ability_base:want",
47    "c_utils:utils",
48    "hisysevent_native:libhisysevent",
49    "ipc:ipc_core",
50    "safwk:system_ability_fwk",
51  ]
52
53  defines = [
54    "NETMGR_LOG_TAG = \"MDnsManager\"",
55    "LOG_DOMAIN = 0xD0015B0",
56  ]
57
58  if (enable_netmgr_ext_debug) {
59    defines += [ "NETMGR_DEBUG" ]
60  }
61
62  if (is_standard_system) {
63    external_deps += [ "hiviewdfx_hilog_native:libhilog" ]
64  } else {
65    external_deps += [ "hilog:libhilog" ]
66  }
67
68  part_name = "netmanager_ext"
69  subsystem_name = "communication"
70}
71