• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021 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("//foundation/communication/dsoftbus/core/connection/ble/conn_ble.gni")
15import("//foundation/communication/dsoftbus/core/connection/br/conn_br.gni")
16import(
17    "//foundation/communication/dsoftbus/core/connection/wifi_direct/wifi_direct.gni")
18import("//foundation/communication/dsoftbus/dsoftbus.gni")
19
20#import("//foundation/communication/dsoftbus/core/connection/common/conn_common.gni")
21import("//foundation/communication/dsoftbus/core/connection/tcp/conn_tcp.gni")
22conn_manager_src = ble_connection_src + br_connection_src + tcp_connection_src +
23                   wifi_direct_connection_src
24conn_manager_inc = ble_connection_inc + br_connection_inc + tcp_connection_inc +
25                   wifi_direct_connection_inc
26conn_manager_external_deps =
27    wifi_direct_connection_external_deps + ble_connection_external_deps
28conn_manager_src +=
29    [ "$dsoftbus_root_path/core/connection/manager/softbus_conn_manager.c" ]
30conn_manager_inc += [
31  "$dsoftbus_root_path/core/connection/manager",
32  "$dsoftbus_root_path/core/connection/interface",
33  "$dsoftbus_root_path/core/common/include",
34  "$dsoftbus_root_path/core/common/dfx/hisysevent_adapter/include",
35]
36