Add Android.bp variables to the soong build parser

* BtConfigIncludeDir: BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR
* BtHcilpIncluded: BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED
* BtHciUseMct: BLUETOOTH_HCI_USE_MCT

Bug: 32958753
Test: Code compilation, no user visible effects

Change-Id: I0dc53172ee823e4e0fa69749e1297713796538cf
This commit is contained in:
Jack He
2016-12-08 15:45:07 -08:00
parent 9b165dd015
commit 8cc714313c
2 changed files with 17 additions and 0 deletions

View File

@@ -138,6 +138,10 @@ type productVariables struct {
SanitizeDeviceArch []string `json:",omitempty"`
ArtUseReadBarrier *bool `json:",omitempty"`
BtConfigIncludeDir *string `json:",omitempty"`
BtHcilpIncluded *string `json:",omitempty"`
BtHciUseMct *bool `json:",omitempty"`
}
func boolPtr(v bool) *bool {