From fae1cd13f09b92e0dee5758ff6e155433dbe76b5 Mon Sep 17 00:00:00 2001 From: Jack He Date: Thu, 9 Feb 2017 14:28:00 -0800 Subject: [PATCH] Remove mk file parser variables that are no longer required by system/bt * Removed BLUETOOTH_HCI_USE_MCT * Removed BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED Bug: 35203653, 34951912 Test: Code compilation, no user visible effects Change-Id: Ic575d3a0fac541da3e70543d0f144ea4792bc058 --- core/soong_config.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/soong_config.mk b/core/soong_config.mk index d987254118..ad2f204391 100644 --- a/core/soong_config.mk +++ b/core/soong_config.mk @@ -67,9 +67,7 @@ $(SOONG_VARIABLES): FORCE echo ''; \ echo ' "ArtUseReadBarrier": $(if $(filter false,$(PRODUCT_ART_USE_READ_BARRIER)),false,true),'; \ echo ''; \ - echo ' "BtConfigIncludeDir": "$(BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR)",'; \ - echo ' "BtHcilpIncluded": "$(BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED)",'; \ - echo ' "BtHciUseMct": $(if $(filter true,$(BLUETOOTH_HCI_USE_MCT)),true,false)'; \ + echo ' "BtConfigIncludeDir": "$(BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR)"'; \ echo '}') > $(SOONG_VARIABLES_TMP); \ if ! cmp -s $(SOONG_VARIABLES_TMP) $(SOONG_VARIABLES); then \ mv $(SOONG_VARIABLES_TMP) $(SOONG_VARIABLES); \