1# Copyright (c) 2021-2024 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/transmission/trans_channel/common/common.gni")
15import("../../../core/transmission/trans_channel/proxy/proxy.gni")
16import("../../../core/transmission/trans_channel/qos/qos.gni")
17import("../../../core/transmission/trans_channel/tcp_direct/tcp_direct.gni")
18import(
19    "../../../core/transmission/trans_channel/udp_negotiation/udp_negotiation.gni")
20import("../../../dsoftbus.gni")
21
22trans_channel_src =
23    trans_channel_common_src + trans_proxy_channel_src +
24    trans_direct_channel_src + trans_udp_channel_src + trans_qos_src
25trans_channel_inc =
26    trans_channel_common_inc + trans_proxy_channel_inc +
27    trans_direct_channel_inc + trans_udp_channel_inc + trans_qos_inc
28trans_channel_deps =
29    trans_channel_common_deps + trans_proxy_channel_deps + trans_qos_deps
30
31trans_channel_src += [
32  "$dsoftbus_root_path/core/transmission/trans_channel/auth/src/trans_auth_manager.c",
33  "$dsoftbus_root_path/core/transmission/trans_channel/auth/src/trans_auth_message.c",
34  "$dsoftbus_root_path/core/transmission/trans_channel/manager/src/trans_auth_negotiation.c",
35  "$dsoftbus_root_path/core/transmission/trans_channel/manager/src/trans_channel_callback.c",
36  "$dsoftbus_root_path/core/transmission/trans_channel/manager/src/trans_channel_manager.c",
37  "$dsoftbus_root_path/core/transmission/trans_channel/manager/src/trans_lane_manager.c",
38  "$dsoftbus_root_path/core/transmission/trans_channel/manager/src/trans_link_listener.c",
39]
40trans_channel_inc += [
41  "$dsoftbus_root_path/core/adapter/transmission/include",
42  "$dsoftbus_root_path/core/authentication/include",
43  "$dsoftbus_root_path/core/transmission/trans_channel/auth/include",
44  "$dsoftbus_root_path/core/transmission/trans_channel/manager/include",
45  "$dsoftbus_root_path/core/transmission/trans_channel/common/include",
46  "$dsoftbus_root_path/core/bus_center/lnn/lane_hub/lane_manager/include",
47]
48