From a594f27b87cd83cfcf0ac6c7cd0f250a422f54fe Mon Sep 17 00:00:00 2001 From: Alice Kuo Date: Wed, 3 Jan 2024 06:57:44 +0800 Subject: [PATCH] Enable broadcast source and broadcast assistant behind feature flag Bug: 309382793 Test: make build Change-Id: I4b77b950c3d23fb07082ecf3cac378c7f408dd41 --- device-husky.mk | 6 ++++++ device-ripcurrent.mk | 6 ++++++ device-shiba.mk | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/device-husky.mk b/device-husky.mk index cb60da0..74aa67a 100644 --- a/device-husky.mk +++ b/device-husky.mk @@ -193,6 +193,12 @@ PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.ccp.server.enabled=true \ bluetooth.profile.vcp.controller.enabled=true +ifeq ($(RELEASE_PIXEL_BROADCAST_ENABLED), true) +PRODUCT_PRODUCT_PROPERTIES += \ + bluetooth.profile.bap.broadcast.assist.enabled=true \ + bluetooth.profile.bap.broadcast.source.enabled=true +endif + # Bluetooth LE Audio enable hardware offloading PRODUCT_PRODUCT_PROPERTIES += \ ro.bluetooth.leaudio_offload.supported=true \ diff --git a/device-ripcurrent.mk b/device-ripcurrent.mk index 0d14aad..94a78ab 100644 --- a/device-ripcurrent.mk +++ b/device-ripcurrent.mk @@ -158,6 +158,12 @@ PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.ccp.server.enabled=true \ bluetooth.profile.vcp.controller.enabled=true +ifeq ($(RELEASE_PIXEL_BROADCAST_ENABLED), true) +PRODUCT_PRODUCT_PROPERTIES += \ + bluetooth.profile.bap.broadcast.assist.enabled=true \ + bluetooth.profile.bap.broadcast.source.enabled=true +endif + # Bluetooth LE Audio enable hardware offloading PRODUCT_PRODUCT_PROPERTIES += \ ro.bluetooth.leaudio_offload.supported=true \ diff --git a/device-shiba.mk b/device-shiba.mk index 4156044..3aea38e 100644 --- a/device-shiba.mk +++ b/device-shiba.mk @@ -181,6 +181,12 @@ PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.ccp.server.enabled=true \ bluetooth.profile.vcp.controller.enabled=true +ifeq ($(RELEASE_PIXEL_BROADCAST_ENABLED), true) +PRODUCT_PRODUCT_PROPERTIES += \ + bluetooth.profile.bap.broadcast.assist.enabled=true \ + bluetooth.profile.bap.broadcast.source.enabled=true +endif + # Bluetooth LE Audio enable hardware offloading PRODUCT_PRODUCT_PROPERTIES += \ ro.bluetooth.leaudio_offload.supported=true \