1 Star 0 Fork 274

dingxiaochen/communication_netmanager_ext

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
netmanager_ext_config.gni 5.22 KB
一键复制 编辑 原始数据 按行查看 历史
m30063213 提交于 2024-07-10 17:18 . json文件去掉赋值
# Copyright (c) 2021-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.
# args of this module
SUBSYSTEM_DIR = "//foundation/communication"
NETMANAGER_EXT_ROOT = "$SUBSYSTEM_DIR/netmanager_ext"
# args of frameworks
FRAMEWORKS_SRC = "$NETMANAGER_EXT_ROOT/frameworks/native/externalvpnclient/src"
ETHERNETMANAGER_INNERKITS_SOURCE_DIR =
"$NETMANAGER_EXT_ROOT/frameworks/native/ethernetclient"
NETWORKSHAREMANAGER_INNERKITS_SOURCE_DIR =
"$NETMANAGER_EXT_ROOT/frameworks/native/netshareclient"
VPN_INNERKITS_SOURCE_DIR = "$NETMANAGER_EXT_ROOT/frameworks/native/netvpnclient"
VPN_EXTENSION_SOURCE_DIR = "$NETMANAGER_EXT_ROOT/frameworks/native/vpnextension"
NETFIREWALL_EXTENSION_SOURCE_DIR =
"$NETMANAGER_EXT_ROOT/frameworks/native/netfirewallclient"
# args of interfaces
INTERFACES_INCLUDE =
"$NETMANAGER_EXT_ROOT/interfaces/innerkits/externalvpnclient/include"
INTERFACES_DIR = "$NETMANAGER_EXT_ROOT/interfaces/innerkits/externalvpnclient"
EXT_INNERKITS_ROOT = "$NETMANAGER_EXT_ROOT/interfaces/innerkits"
MDNSINTERFACE_INCLUDE = "$NETMANAGER_EXT_ROOT/interfaces/innerkits/mdnsclient"
# args of services
SERVICES_EXTERNALVPNMANAGER = "$NETMANAGER_EXT_ROOT/services/externalvpnmanager"
ETHERNETMANAGER_SOURCE_DIR = "$NETMANAGER_EXT_ROOT/services/ethernetmanager"
NETWORKSHAREMANAGER_SOURCE_DIR =
"$NETMANAGER_EXT_ROOT/services/networksharemanager"
MDNSMANAGER_SOURCE_DIR = "$NETMANAGER_EXT_ROOT/services/mdnsmanager"
VPNMANAGER_SOURCE_DIR = "$NETMANAGER_EXT_ROOT/services/vpnmanager"
NETFIREWALLMANAGER_SOURCE_DIR =
"$NETMANAGER_EXT_ROOT/services/netfirewallmanager"
# args of uitls
NETWORKSHAREMANAGER_UTILS_DIR = "$NETMANAGER_EXT_ROOT/utils"
# args of base module
NETMANAGER_BASE_ROOT = "$SUBSYSTEM_DIR/netmanager_base"
# args of base modules'frameworks
NETCONNMANAGER_INNERKITS_SOURCE_DIR =
"$NETMANAGER_BASE_ROOT/frameworks/native/netconnclient"
# args of base modules' interfaces
BASE_INNERKITS_ROOT = "$NETMANAGER_BASE_ROOT/interfaces/innerkits"
# args of base module's servicesability_runtime
NETCONNMANAGER_COMMON_DIR = "$NETMANAGER_BASE_ROOT/services/common"
NETSYSCONTROLLER_ROOT_DIR = "$NETMANAGER_BASE_ROOT/services/netsyscontroller"
NETCONNMANAGER_SOURCE_DIR = "$NETMANAGER_BASE_ROOT/services/netconnmanager"
NETMANAGERNATIVE_ROOT = "$NETMANAGER_BASE_ROOT/services/netmanagernative"
# args of base module's utils
NETCONNMANAGER_UTILS_DIR = "$NETMANAGER_BASE_ROOT/utils"
# NETMANAGER_PREBUILTS_DIR = "$NETMANAGER_BASE_ROOT/prebuilts"
# args of other module
DHCP_MANAGER_ROOT = "//foundation/communication/dhcp"
WIFI_MANAGER_ROOT = "//foundation/communication/wifi/wifi"
WIFI_MANAGER_INNERKITS_DIR = "$WIFI_MANAGER_ROOT/interfaces/kits/c"
WIFI_FRAMEWORK_NATIVE_INCLUDE = "$WIFI_MANAGER_ROOT/frameworks/native/include"
BLUETOOTH_ROOT = "//foundation/communication/bluetooth"
USB_MANAGER_ROOT = "//base/usb/usb_manager"
SAMGR_MANAGER_ROOT = "//foundation/systemabilitymgr/samgr"
UTILS_ROOT = "//utils"
THIRD_PARTY_ROOT = "//third_party"
C_UTILS_ROOT = "//commonlibrary/c_utils"
ABILITY_RUNTIME_PATH = "//foundation/ability/ability_runtime"
ABILITY_RUNTIME_INNER_API_PATH = "$ABILITY_RUNTIME_PATH/interfaces/inner_api"
ABILITY_RUNTIME_KITS_PATH = "$ABILITY_RUNTIME_PATH/interfaces/kits"
ABILITY_RUNTIME_SERVICES_PATH = "$ABILITY_RUNTIME_PATH/services"
ABILITY_RUNTIME_NAPI_PATH = "$ABILITY_RUNTIME_PATH/frameworks/js/napi"
ABILITY_RUNTIME_NATIVE_PATH = "$ABILITY_RUNTIME_PATH/frameworks/native"
ABILITY_DISPLAY_MANAGER = "//foundation/window/window_manager"
use_js_debug = false
declare_args() {
communication_bluetooth_switch_enable = false
communication_wifi_switch_enable = false
enable_netmgr_ext_debug = true
netmanager_ext_feature_coverage = false
netmanager_ext_feature_ethernet = true
netmanager_ext_feature_share = true
netmanager_ext_feature_mdns = true
netmanager_ext_feature_net_firewall = false
netmanager_ext_feature_vpn = true
netmanager_ext_feature_vpnext = true
usb_manager_enable = false
}
memory_optimization_cflags = [
"-fvisibility=hidden",
"-fdata-sections",
"-ffunction-sections",
"-Os",
]
memory_optimization_cflags_cc = [
"-fvisibility-inlines-hidden",
"-Os",
]
memory_optimization_ldflags = [
"-Wl,--exclude-libs=ALL",
"-Wl,--gc-sections",
]
if (defined(global_parts_info) &&
defined(global_parts_info.communication_wifi) &&
global_parts_info.communication_wifi) {
communication_wifi_switch_enable = true
}
if (defined(global_parts_info) &&
defined(global_parts_info.communication_bluetooth) &&
global_parts_info.communication_bluetooth) {
communication_bluetooth_switch_enable = false
}
if (defined(global_parts_info) && defined(global_parts_info.usb_usb_manager) &&
global_parts_info.usb_usb_manager) {
usb_manager_enable = true
}
fuzz_test_path = "netmanager_ext/netmanager_ext"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dingxiaochen/communication_netmanager_ext.git
git@gitee.com:dingxiaochen/communication_netmanager_ext.git
dingxiaochen
communication_netmanager_ext
communication_netmanager_ext
master

搜索帮助