request_request/request_aafwk.gni
fqwert 3b27372db0 合并download_server request,将request_service_c切换为静态库
libdownload_server.dylib.so完全依赖librequest.dylib.so,并没有必要分成两个so,downloadserver只起到SA注册,init的作用。多个so,不便于管理。另外librequest.dylib.so依赖的librequest_c.so并没有必要编程成动态库,librequest.dylib.so可以以静态的方式依赖它。

Signed-off-by: fqwert <yanglv2@huawei.com>
Change-Id: Ie0aca8683e37a379893deaa71388831a34b52496
2024-02-04 12:04:48 +08:00

29 lines
1.1 KiB
Plaintext

# Copyright (c) 2022 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.
test_path = "//test/testfwk/developer_test/signature"
declare_args() {
request_telephony_core_service = false
if (defined(global_parts_info) &&
defined(global_parts_info.telephony_core_service) &&
global_parts_info.telephony_core_service) {
request_telephony_core_service = true
}
request_telephony_cellular_data = false
if (defined(global_parts_info) &&
defined(global_parts_info.telephony_cellular_data) &&
global_parts_info.telephony_cellular_data) {
request_telephony_cellular_data = true
}
}