Revert "soong_config: Add flag for msm8974 1440p EGL workaround"

This reverts commit f3f7eb2d87.

Support for this in fw/native has been ported in the previous branch
and is very unlikely that will be done or even needed for R.

Change-Id: I9c9709e323d6a27f3c9196887af7ab0ffa1819e9
This commit is contained in:
Bruno Martins 2020-10-15 21:39:23 +01:00
parent b2c606a079
commit 1460ac1c8f
2 changed files with 0 additions and 5 deletions

View file

@ -3,9 +3,6 @@ type Product_variables struct {
Additional_gralloc_10_usage_bits struct {
Cppflags []string
}
Apply_msm8974_1440p_egl_workaround struct {
Cflags []string
}
Bootloader_message_offset struct {
Cflags []string
}
@ -68,7 +65,6 @@ type Product_variables struct {
type ProductVariables struct {
Additional_gralloc_10_usage_bits *string `json:",omitempty"`
Apply_msm8974_1440p_egl_workaround *bool `json:",omitempty"`
Bootloader_message_offset *int `json:",omitempty"`
Has_legacy_camera_hal1 *bool `json:",omitempty"`
Qcom_um_soong_namespace *string `json:",omitempty"`

View file

@ -5,7 +5,6 @@ _json_contents := $(_json_contents) "Lineage":{$(newline)
# See build/core/soong_config.mk for the add_json_* functions you can use here.
$(call add_json_str_omitempty, Additional_gralloc_10_usage_bits, $(TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS))
$(call add_json_bool, Apply_msm8974_1440p_egl_workaround, $(filter true,$(TARGET_MSM8974_1440P_EGL_WORKAROUND)))
$(call add_json_val_default, Bootloader_message_offset, $(BOOTLOADER_MESSAGE_OFFSET), 0)
$(call add_json_bool, Has_legacy_camera_hal1, $(filter true,$(TARGET_HAS_LEGACY_CAMERA_HAL1)))
$(call add_json_str_omitempty, Qcom_um_soong_namespace, $(if $(filter $(UM_PLATFORMS),$(TARGET_BOARD_PLATFORM)),$(QCOM_SOONG_NAMESPACE),))