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

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

Remove build variables that are no longer used

* Removed BtHcilpIncluded from BOARD_BLUETOOTH_BDROID_HCILP_INCLUDE
* Removed BtHciUseMct from BLUETOOTH_HCI_USE_MCT

Bug: 35203653, 34951912
Test: Code compilation, no user visible effects
Change-Id: Ifbb0c2165a2b7cb6ec1d5c87a610219dd010206b
parent f091cf51
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -61,15 +61,5 @@ func globalDefaults(ctx android.BaseContext) ([]string, []string) {
    cflags = append(cflags, "-DHAS_NO_BDROID_BUILDCFG")
  }

  board_bt_hcilp_included := ctx.DeviceConfig().BtHcilpIncluded()
  if (len(board_bt_hcilp_included) > 0) {
      cflags = append(cflags, "-DHCILP_INCLUDED=" + board_bt_hcilp_included)
  }

  board_bt_hci_use_mct := ctx.DeviceConfig().BtHciUseMct()
  if (board_bt_hci_use_mct) {
      cflags = append(cflags, "-DHCI_USE_MCT")
  }

  return cflags, includeDirs
}