Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee8e7a7a authored by Jack He's avatar Jack He
Browse files

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
parent 62944779
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -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)
}
+0 −2
Original line number Diff line number Diff line
@@ -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 {