• 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/dsoftbus.gni")
15import(
16    "//foundation/communication/dsoftbus/sdk/transmission/trans_channel/auth/trans_auth_sdk.gni")
17import(
18    "//foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/trans_proxy_sdk.gni")
19import(
20    "//foundation/communication/dsoftbus/sdk/transmission/trans_channel/qos/trans_qos_sdk.gni")
21import(
22    "//foundation/communication/dsoftbus/sdk/transmission/trans_channel/tcp_direct/trans_tcp_sdk.gni")
23import(
24    "//foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/trans_udp_sdk.gni")
25
26trans_channel_sdk_inc =
27    trans_auth_channel_sdk_inc + trans_proxy_channel_sdk_inc +
28    trans_direct_channel_sdk_inc + trans_udp_channel_sdk_inc + trans_qos_sdk_inc
29trans_channel_sdk_src =
30    trans_auth_channel_sdk_src + trans_proxy_channel_sdk_src +
31    trans_direct_channel_sdk_src + trans_udp_channel_sdk_src + trans_qos_sdk_src
32trans_channel_sdk_deps = trans_udp_channel_sdk_deps
33
34trans_channel_sdk_src += [
35  "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/src/client_trans_channel_callback.c",
36  "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/src/client_trans_channel_manager.c",
37]
38trans_channel_sdk_inc +=
39    [ "$dsoftbus_root_path/sdk/transmission/trans_channel/manager/include" ]
40