From 0f8dbe476b95b99eaca7eda8ba79a543f6612e52 Mon Sep 17 00:00:00 2001 From: terrycrhuang Date: Wed, 5 May 2021 21:40:42 +0800 Subject: [PATCH] Add Google Dialer and Enable PARIS in PDK ROM Use the environment variable USES_GOOGLE_DIALER_PARIS to decide to replace AOSP Dialer by Google Dialer and enable PARIS. The variable should be set in PDK release ROM and User could set it locally as you want the AOSP build with them. Bug: 187242540 Test: Loacal build. Google Dialer and Paris work Change-Id: Ib823f5447db5fd593b9044c8cdb766165ce6cedf --- device.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/device.mk b/device.mk index dc5f1ea3..55c1f36b 100644 --- a/device.mk +++ b/device.mk @@ -124,6 +124,11 @@ USE_LASSEN_OEMHOOK := true # Use for GRIL USES_LASSEN_MODEM := true +ifeq ($(USES_GOOGLE_DIALER_PARIS),true) +USE_GOOGLE_DIALER := true +USE_GOOGLE_PARIS := true +endif + ifeq (,$(filter aosp_%,$(TARGET_PRODUCT))) # Audio client implementation for RIL USES_GAUDIO := true