Add TARGET_USES_AOSP_FOR_WLAN soong variable

It's set and used in many .mk files. Adding this to "wifi" soong config
namespace helps migration of those .mk files into .bp files.

Ignore-AOSP-First: Topic includes a project not in AOSP.

Bug: 273376293
Test: m libwifi-hal libwifi-hal-qcom
Change-Id: Ie0fad26305d50f70076b7e538fd1a7fa03e397cb
This commit is contained in:
Jooyung Han 2023-03-27 17:21:58 +09:00
parent 70e261bcc0
commit 6d7bf283ad

View file

@ -78,3 +78,6 @@ endif
ifdef WIFI_SKIP_STATE_TOGGLE_OFF_ON_FOR_NAN
$(call soong_config_set,wifi,wifi_skip_state_toggle_off_on_for_nan,true)
endif
ifeq ($(strip $(TARGET_USES_AOSP_FOR_WLAN)),true)
$(call soong_config_set,wifi,target_uses_aosp_for_wlan,true)
endif