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("//foundation/communication/dsoftbus/core/connection/p2p/conn_p2p.gni") 17import("//foundation/communication/dsoftbus/dsoftbus.gni") 18 19#import("//foundation/communication/dsoftbus/core/connection/common/conn_common.gni") 20import("//foundation/communication/dsoftbus/core/connection/tcp/conn_tcp.gni") 21conn_manager_src = ble_connection_src + br_connection_src + tcp_connection_src + 22 p2p_connection_src 23conn_manager_inc = ble_connection_inc + br_connection_inc + tcp_connection_inc + 24 p2p_connection_inc 25conn_manager_deps = 26 ble_connection_deps + br_connection_deps + p2p_connection_deps 27conn_manager_src += 28 [ "$dsoftbus_root_path/core/connection/manager/softbus_conn_manager.c" ] 29conn_manager_inc += [ 30 "$dsoftbus_root_path/core/connection/manager", 31 "$dsoftbus_root_path/core/connection/interface", 32] 33