Kevin F. Haggerty | 013fbe0 | 2018-08-28 18:22:25 -0600 | [diff] [blame] | 1 | add_json_str_omitempty = $(if $(strip $(2)),$(call add_json_str, $(1), $(2))) |
Jackeagle | 64d1d35 | 2019-07-28 14:31:18 -0400 | [diff] [blame^] | 2 | add_json_val_default = $(call add_json_val, $(1), $(if $(strip $(2)), $(2), $(3))) |
Kevin F. Haggerty | 013fbe0 | 2018-08-28 18:22:25 -0600 | [diff] [blame] | 3 | |
Simon Shields | 95566a7 | 2018-08-10 14:40:27 +1000 | [diff] [blame] | 4 | _contents := $(_contents) "Bliss":{$(newline) |
| 5 | |
| 6 | # See build/core/soong_config.mk for the add_json_* functions you can use here. |
Kevin F. Haggerty | 5ac58a6 | 2018-08-25 20:23:19 -0600 | [diff] [blame] | 7 | $(call add_json_str_omitempty, Additional_gralloc_10_usage_bits, $(TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS)) |
Jackeagle | 64d1d35 | 2019-07-28 14:31:18 -0400 | [diff] [blame^] | 8 | $(call add_json_bool, Has_legacy_camera_hal1, $(filter true,$(TARGET_HAS_LEGACY_CAMERA_HAL1))) |
| 9 | $(call add_json_bool, Should_skip_waiting_for_qsee, $(filter true,$(TARGET_KEYMASTER_SKIP_WAITING_FOR_QSEE))) |
| 10 | $(call add_json_str, Specific_camera_parameter_library, $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY)) |
Josh Fox (XlxFoXxlX) | 7ee72d9 | 2019-05-19 17:10:31 -0400 | [diff] [blame] | 11 | $(call add_json_bool, Supports_hw_fde, $(filter true,$(TARGET_HW_DISK_ENCRYPTION))) |
| 12 | $(call add_json_bool, Supports_hw_fde_perf, $(filter true,$(TARGET_HW_DISK_ENCRYPTION_PERF))) |
| 13 | $(call add_json_bool, Supports_legacy_hw_fde, $(filter true,$(TARGET_LEGACY_HW_DISK_ENCRYPTION))) |
Jackeagle | 64d1d35 | 2019-07-28 14:31:18 -0400 | [diff] [blame^] | 14 | $(call add_json_str_omitempty, Target_process_sdk_version_override, $(TARGET_PROCESS_SDK_VERSION_OVERRIDE)) |
| 15 | $(call add_json_str_omitempty, Target_shim_libs, $(TARGET_LD_SHIM_LIBS)) |
| 16 | $(call add_json_bool, Uses_generic_camera_parameter_library, $(if $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY),,true)) |
erfanoabdi | ca8fc5c | 2019-06-24 19:15:46 -0600 | [diff] [blame] | 17 | $(call add_json_bool, Uses_metadata_as_fde_key, $(filter true,$(TARGET_USES_METADATA_AS_FDE_KEY))) |
| 18 | $(call add_json_bool, Uses_nvidia_enhancements, $(filter TRUE,$(NV_ANDROID_FRAMEWORK_ENHANCEMENTS))) |
| 19 | $(call add_json_bool, Uses_qcom_bsp_legacy, $(filter true,$(TARGET_USES_QCOM_BSP_LEGACY))) |
| 20 | $(call add_json_bool, Uses_qti_camera_device, $(filter true,$(TARGET_USES_QTI_CAMERA_DEVICE))) |
Simon Shields | 95566a7 | 2018-08-10 14:40:27 +1000 | [diff] [blame] | 21 | |
| 22 | # This causes the build system to strip out the last comma in our nested struct, to keep the JSON valid. |
| 23 | _contents := $(_contents)__SV_END |
| 24 | |
| 25 | _contents := $(_contents) },$(newline) |