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("../../core/common/dfx/dsoftbus_dfx.gni") 15import("../../core/connection/ble/conn_ble.gni") 16import("../../core/connection/br/conn_br.gni") 17import("../../core/connection/wifi_direct/wifi_direct.gni") 18import("../../dsoftbus.gni") 19 20#import("//foundation/communication/dsoftbus/core/connection/common/conn_common.gni") 21import("../../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_common_deps = [ "$dsoftbus_dfx_path/log:softbus_dfx_log" ] 29conn_manager_common_deps += wifi_direct_connection_common_deps 30 31conn_manager_src += 32 [ "$dsoftbus_root_path/core/connection/manager/softbus_conn_manager.c" ] 33conn_manager_inc += [ 34 "$dsoftbus_root_path/core/connection/manager", 35 "$dsoftbus_root_path/core/connection/interface", 36 "$dsoftbus_root_path/core/common/include", 37 "$dsoftbus_root_path/core/common/dfx/hisysevent_adapter/include", 38] 39