Removed Bluetooth build variables from the soong build parser am: ee8e7a7a2c

am: 405b958886

Change-Id: Ia1e6b26bf7d328fbd1956452a3aa500fb58b989d
This commit is contained in:
Jack He
2017-02-10 01:01:50 +00:00
committed by android-build-merger
2 changed files with 0 additions and 10 deletions

View File

@@ -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)
}

View File

@@ -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 {