2022-03-31 08:25:08 +00:00
|
|
|
# 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.
|
|
|
|
|
2022-06-27 02:22:45 +00:00
|
|
|
ability_runtime_path = "//foundation/ability/ability_runtime"
|
2023-10-23 01:38:38 +00:00
|
|
|
fuzz_test_output_path = "wifi/wifi/wifi_sta"
|
2022-04-21 09:11:11 +00:00
|
|
|
SUBSYSTEM_DIR = "//foundation/communication"
|
|
|
|
WIFI_ROOT_DIR = "$SUBSYSTEM_DIR/wifi/wifi"
|
2023-03-14 03:30:35 +00:00
|
|
|
DHCP_ROOT_DIR = "$SUBSYSTEM_DIR/dhcp"
|
2022-04-21 09:11:11 +00:00
|
|
|
|
2022-03-31 08:25:08 +00:00
|
|
|
declare_args() {
|
2022-04-21 09:11:11 +00:00
|
|
|
wifi_feature_with_p2p = true
|
2022-07-19 08:55:55 +00:00
|
|
|
wifi_feature_with_ap_intf = "wlan"
|
2022-06-09 07:50:40 +00:00
|
|
|
wifi_feature_with_ap_num = 1
|
2023-10-10 07:28:13 +00:00
|
|
|
wifi_feature_with_sta_num = 1
|
2022-06-09 07:50:40 +00:00
|
|
|
wifi_feature_with_auth_disable = false
|
|
|
|
wifi_feature_with_dhcp_disable = false
|
2022-10-19 09:09:49 +00:00
|
|
|
wifi_feature_with_encryption = false
|
2022-09-15 11:11:55 +00:00
|
|
|
wifi_feature_is_hdi_supported = false
|
2023-06-28 14:18:28 +00:00
|
|
|
wifi_feature_with_ap_extension = false
|
2022-12-30 07:09:15 +00:00
|
|
|
wifi_feature_with_app_frozen = false
|
2023-02-22 04:22:30 +00:00
|
|
|
wifi_feature_non_seperate_p2p = false
|
|
|
|
wifi_feature_non_hdf_driver = false
|
2023-11-12 10:22:46 +00:00
|
|
|
wifi_feature_with_local_random_mac = false
|
2022-12-30 09:46:13 +00:00
|
|
|
if (defined(global_parts_info) &&
|
|
|
|
defined(global_parts_info.resourceschedule_efficiency_manager)) {
|
2022-12-30 09:34:43 +00:00
|
|
|
wifi_feature_with_app_frozen = true
|
|
|
|
}
|
2023-06-27 06:34:58 +00:00
|
|
|
wifi_feature_sta_ap_exclusion = true
|
2023-07-25 12:42:58 +00:00
|
|
|
wifi_feature_with_random_mac_addr = true
|
2023-11-07 13:07:24 +00:00
|
|
|
wifi_feature_with_hdi_wpa_supported = false
|
2023-11-24 12:27:45 +00:00
|
|
|
wifi_feature_with_hpf_supported = true
|
2023-12-08 06:45:26 +00:00
|
|
|
wifi_feature_with_rx_listen_supported = false
|
2023-12-06 08:55:58 +00:00
|
|
|
wifi_feature_with_scan_control = true
|
2022-03-31 08:25:08 +00:00
|
|
|
}
|