From ed8e192818f89f04d6e18c8f97da35e1b166db3f Mon Sep 17 00:00:00 2001 From: Michael Bestas Date: Tue, 30 Aug 2022 03:13:24 +0300 Subject: [PATCH] config: Remove TARGET_CAMERA_BOOTTIME_TIMESTAMP This is no longer needed in T Change-Id: Id14c88a548c14a8c26858a13f262f355ba72745e --- build/soong/Android.bp | 17 ----------------- config/BoardConfigSoong.mk | 2 -- 2 files changed, 19 deletions(-) diff --git a/build/soong/Android.bp b/build/soong/Android.bp index a152b314..870d3b73 100644 --- a/build/soong/Android.bp +++ b/build/soong/Android.bp @@ -167,23 +167,6 @@ trust_usb_control { }, } -soong_config_module_type { - name: "needs_camera_boottime", - module_type: "cc_defaults", - config_namespace: "lineageGlobalVars", - bool_variables: ["needs_camera_boottime"], - properties: ["cppflags"], -} - -needs_camera_boottime { - name: "needs_camera_boottime_defaults", - soong_config_variables: { - needs_camera_boottime: { - cppflags: ["-DTARGET_CAMERA_BOOTTIME_TIMESTAMP"], - }, - }, -} - soong_config_module_type { name: "egl_display_array", module_type: "cc_defaults", diff --git a/config/BoardConfigSoong.mk b/config/BoardConfigSoong.mk index 1ffd3a09..1556e2cf 100644 --- a/config/BoardConfigSoong.mk +++ b/config/BoardConfigSoong.mk @@ -30,7 +30,6 @@ SOONG_CONFIG_NAMESPACES += lineageGlobalVars SOONG_CONFIG_lineageGlobalVars += \ additional_gralloc_10_usage_bits \ gralloc_handle_has_reserved_size \ - needs_camera_boottime \ target_init_vendor_lib \ target_ld_shim_libs \ target_surfaceflinger_udfps_lib \ @@ -56,7 +55,6 @@ endif # Soong bool variables SOONG_CONFIG_lineageGlobalVars_gralloc_handle_has_reserved_size := $(TARGET_GRALLOC_HANDLE_HAS_RESERVED_SIZE) -SOONG_CONFIG_lineageGlobalVars_needs_camera_boottime := $(TARGET_CAMERA_BOOTTIME_TIMESTAMP) SOONG_CONFIG_lineageGlobalVars_uses_egl_display_array := $(TARGET_USES_EGL_DISPLAY_ARRAY) SOONG_CONFIG_lineageNvidiaVars_uses_nvidia_enhancements := $(NV_ANDROID_FRAMEWORK_ENHANCEMENTS) SOONG_CONFIG_lineageQcomVars_supports_extended_compress_format := $(AUDIO_FEATURE_ENABLED_EXTENDED_COMPRESS_FORMAT)