1060ff233Sopenharmony_ci# Copyright (c) 2021 Huawei Device Co., Ltd.
2060ff233Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
3060ff233Sopenharmony_ci# you may not use this file except in compliance with the License.
4060ff233Sopenharmony_ci# You may obtain a copy of the License at
5060ff233Sopenharmony_ci#
6060ff233Sopenharmony_ci#     http://www.apache.org/licenses/LICENSE-2.0
7060ff233Sopenharmony_ci#
8060ff233Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software
9060ff233Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS,
10060ff233Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11060ff233Sopenharmony_ci# See the License for the specific language governing permissions and
12060ff233Sopenharmony_ci# limitations under the License.
13060ff233Sopenharmony_ci
14060ff233Sopenharmony_ciimport("../../../dsoftbus.gni")
15060ff233Sopenharmony_ciimport("../../../sdk/transmission/trans_channel/auth/trans_auth_sdk.gni")
16060ff233Sopenharmony_ciimport("../../../sdk/transmission/trans_channel/proxy/trans_proxy_sdk.gni")
17060ff233Sopenharmony_ciimport("../../../sdk/transmission/trans_channel/qos/trans_qos_sdk.gni")
18060ff233Sopenharmony_ciimport(
19060ff233Sopenharmony_ci    "../../../sdk/transmission/trans_channel/statistics/trans_statistics_sdk.gni")
20060ff233Sopenharmony_ciimport("../../../sdk/transmission/trans_channel/tcp_direct/trans_tcp_sdk.gni")
21060ff233Sopenharmony_ciimport("../../../sdk/transmission/trans_channel/udp/trans_udp_sdk.gni")
22060ff233Sopenharmony_ci
23060ff233Sopenharmony_citrans_channel_sdk_inc =
24060ff233Sopenharmony_ci    trans_auth_channel_sdk_inc + trans_statistics_sdk_inc +
25060ff233Sopenharmony_ci    trans_proxy_channel_sdk_inc + trans_direct_channel_sdk_inc +
26060ff233Sopenharmony_ci    trans_udp_channel_sdk_inc + trans_qos_sdk_inc
27060ff233Sopenharmony_citrans_channel_sdk_src =
28060ff233Sopenharmony_ci    trans_auth_channel_sdk_src + trans_statistics_sdk_src +
29060ff233Sopenharmony_ci    trans_proxy_channel_sdk_src + trans_direct_channel_sdk_src +
30060ff233Sopenharmony_ci    trans_udp_channel_sdk_src + trans_qos_sdk_src
31060ff233Sopenharmony_citrans_channel_sdk_deps = trans_udp_channel_sdk_deps
32060ff233Sopenharmony_ci
33060ff233Sopenharmony_citrans_channel_sdk_src += [
34060ff233Sopenharmony_ci  "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/src/client_trans_channel_callback.c",
35060ff233Sopenharmony_ci  "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/src/client_trans_channel_manager.c",
36060ff233Sopenharmony_ci]
37060ff233Sopenharmony_citrans_channel_sdk_inc += [
38060ff233Sopenharmony_ci  "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/include",
39060ff233Sopenharmony_ci  "$dsoftbus_root_path/core/transmission/trans_channel/common/include",
40060ff233Sopenharmony_ci  "$dsoftbus_root_path/core/bus_center/lnn/lane_hub/lane_manager/include",
41060ff233Sopenharmony_ci]
42