aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorJack He <siyuanh@google.com>2017-02-09 14:26:18 -0800
committerJack He <siyuanh@google.com>2017-02-09 14:36:09 -0800
commitee8e7a7a2c22fbbe9228393f71c6ab2110bd2aa0 (patch)
tree3f648ba8d277da5ea9b8d1c1fb7229372b69e491 /android
parent62944779e21c4488e99d9a8a91326129acb77eeb (diff)
downloadbuild_soong-ee8e7a7a2c22fbbe9228393f71c6ab2110bd2aa0.tar.gz
build_soong-ee8e7a7a2c22fbbe9228393f71c6ab2110bd2aa0.tar.bz2
build_soong-ee8e7a7a2c22fbbe9228393f71c6ab2110bd2aa0.zip
Removed Bluetooth build variables from the soong build parser
* Removed BLUETOOTH_HCI_USE_MCT * Removed BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED Bug: 34951912, 35203653 Test: Code compilation, no visible user effects Change-Id: I89af075a334f2ec7b2a3046a4aaa5bcc19d454e0
Diffstat (limited to 'android')
-rw-r--r--android/config.go8
-rw-r--r--android/variable.go2
2 files changed, 0 insertions, 10 deletions
diff --git a/android/config.go b/android/config.go
index 76635b39..eaacef71 100644
--- a/android/config.go
+++ b/android/config.go
@@ -471,11 +471,3 @@ func (c *deviceConfig) VndkVersion() string {
func (c *deviceConfig) BtConfigIncludeDir() string {
return String(c.config.ProductVariables.BtConfigIncludeDir)
}
-
-func (c *deviceConfig) BtHcilpIncluded() string {
- return String(c.config.ProductVariables.BtHcilpIncluded)
-}
-
-func (c *deviceConfig) BtHciUseMct() bool {
- return Bool(c.config.ProductVariables.BtHciUseMct)
-}
diff --git a/android/variable.go b/android/variable.go
index bb84be28..24c58dff 100644
--- a/android/variable.go
+++ b/android/variable.go
@@ -141,8 +141,6 @@ type productVariables struct {
ArtUseReadBarrier *bool `json:",omitempty"`
BtConfigIncludeDir *string `json:",omitempty"`
- BtHcilpIncluded *string `json:",omitempty"`
- BtHciUseMct *bool `json:",omitempty"`
}
func boolPtr(v bool) *bool {