| add_json_str_omitempty = $(if $(strip $(2)),$(call add_json_str, $(1), $(2))) |
| |
| _contents := $(_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, Has_legacy_camera_hal1, $(filter true,$(TARGET_HAS_LEGACY_CAMERA_HAL1))) |
| $(call add_json_str, Java_Source_Overlays, $(JAVA_SOURCE_OVERLAYS)) |
| $(call add_json_bool, Needs_text_relocations, $(filter true,$(TARGET_NEEDS_PLATFORM_TEXT_RELOCATIONS))) |
| $(call add_json_str, Specific_camera_parameter_library, $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY)) |
| $(call add_json_str, Target_shim_libs, $(TARGET_LD_SHIM_LIBS)) |
| $(call add_json_bool, Uses_generic_camera_parameter_library, $(if $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY),,true)) |
| $(call add_json_bool, Uses_nvidia_enhancements, $(filter TRUE,$(NV_ANDROID_FRAMEWORK_ENHANCEMENTS))) |
| $(call add_json_bool, Uses_qcom_bsp_legacy, $(filter true,$(TARGET_USES_QCOM_BSP_LEGACY))) |
| $(call add_json_bool, Uses_qti_camera_device, $(filter true,$(TARGET_USES_QTI_CAMERA_DEVICE))) |
| |
| # This causes the build system to strip out the last comma in our nested struct, to keep the JSON valid. |
| _contents := $(_contents)__SV_END |
| |
| _contents := $(_contents) },$(newline) |