summaryrefslogtreecommitdiff
path: root/android/variable.go
diff options
context:
space:
mode:
author Jack He <siyuanh@google.com> 2016-12-08 15:45:07 -0800
committer Jack He <siyuanh@google.com> 2017-01-11 16:07:44 -0800
commit8cc714313cdcba791e89a5eb8ae164363d75c8e4 (patch)
treeaf6e17917cf0ce4b97e0f94cfe104fb2acd30721 /android/variable.go
parent9b165dd015f00048bfc01622434e1505a2dc2d52 (diff)
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
Diffstat (limited to 'android/variable.go')
-rw-r--r--android/variable.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go
index e6abee625..271454a6f 100644
--- a/android/variable.go
+++ b/android/variable.go
@@ -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 {