mirror of
https://gitee.com/openharmony/communication_dsoftbus
synced 2024-11-23 08:49:59 +00:00
5b1e25cc29
Signed-off-by: JanierVan <fanjingya1@huawei.com>
60 lines
2.6 KiB
Plaintext
60 lines
2.6 KiB
Plaintext
# Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import("../../dsoftbus.gni")
|
|
softbus_client_frame_inc = []
|
|
if (defined(ohos_lite)) {
|
|
if (ohos_kernel_type == "liteos_m") {
|
|
softbus_client_frame_inc += [
|
|
"$dsoftbus_root_path/sdk/frame/mini/include",
|
|
"$dsoftbus_root_path/sdk/frame/common/include",
|
|
]
|
|
softbus_client_frame_src = [
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_event_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_frame_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/mini/src/softbus_client_stub.c",
|
|
]
|
|
} else {
|
|
softbus_client_frame_inc += [
|
|
"$dsoftbus_root_path/sdk/frame/common/include",
|
|
"$dsoftbus_root_path/sdk/frame/small/include",
|
|
]
|
|
|
|
softbus_client_frame_src = [
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_event_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_frame_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/small/src/bus_center_client_stub.c",
|
|
"$dsoftbus_root_path/sdk/frame/small/src/softbus_client_context_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/small/src/softbus_client_stub.c",
|
|
"$dsoftbus_root_path/sdk/frame/small/src/softbus_server_proxy.c",
|
|
"$dsoftbus_root_path/sdk/frame/small/src/trans_client_stub.c",
|
|
]
|
|
}
|
|
} else {
|
|
softbus_client_frame_inc += [
|
|
"$dsoftbus_root_path/sdk/frame/common/include",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/include",
|
|
]
|
|
|
|
softbus_client_frame_src = [
|
|
"$dsoftbus_root_path/core/frame/$os_type/init/src/if_softbus_server.cpp",
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_event_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/common/src/softbus_client_frame_manager.c",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/src/if_softbus_client.cpp",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/src/softbus_client_death_recipient.cpp",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/src/softbus_client_stub.cpp",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/src/softbus_server_proxy_frame.cpp",
|
|
"$dsoftbus_root_path/sdk/frame/$os_type/src/softbus_server_proxy_standard.cpp",
|
|
]
|
|
}
|