diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-05 15:10:31 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-06 12:15:24 +0200 |
commit | af08db027b6214306683c8cbf9980798c5f85977 (patch) | |
tree | 97211afd7b11bace6ce508984d110ddf10dc41f2 /build/soong/android | |
parent | dc5051ce0272ddb572aaa72ecd0e1d00ad9b0f83 (diff) | |
download | external_wget-replicant-11.tar.gz external_wget-replicant-11.tar.bz2 external_wget-replicant-11.zip |
This way:
- We can rebase more easily if needed
- We don't have to bring in the other part of vendor/lineage that
is potentially incompatible with what we have
wget was also moved in the top directory along the way.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'build/soong/android')
-rw-r--r-- | build/soong/android/config.go | 13 | ||||
-rw-r--r-- | build/soong/android/variable.go | 100 |
2 files changed, 0 insertions, 113 deletions
diff --git a/build/soong/android/config.go b/build/soong/android/config.go deleted file mode 100644 index e926c9d8..00000000 --- a/build/soong/android/config.go +++ /dev/null @@ -1,13 +0,0 @@ -package android - -// Global config used by Lineage soong additions -var LineageConfig = struct { - // List of packages that are permitted - // for java source overlays. - JavaSourceOverlayModuleWhitelist []string -}{ - // JavaSourceOverlayModuleWhitelist - []string{ - "org.lineageos.hardware", - }, -} diff --git a/build/soong/android/variable.go b/build/soong/android/variable.go deleted file mode 100644 index 2136f01e..00000000 --- a/build/soong/android/variable.go +++ /dev/null @@ -1,100 +0,0 @@ -package android -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 - } - Has_legacy_camera_hal1 struct { - Cflags []string - } - Should_skip_waiting_for_qsee struct { - Cflags []string - } - Supports_hw_fde struct { - Cflags []string - Header_libs []string - Shared_libs []string - } - Supports_hw_fde_perf struct { - Cflags []string - } - Supports_legacy_hw_fde struct { - Cflags []string - } - Target_omx_legacy_rescaling struct { - Cppflags []string - } - Target_process_sdk_version_override struct { - Cppflags []string - } - Target_shim_libs struct { - Cppflags []string - } - Uses_generic_camera_parameter_library struct { - Srcs []string - } - Uses_metadata_as_fde_key struct { - Cflags []string - } - Uses_nvidia_enhancements struct { - Cppflags []string - } - Uses_qcom_bsp_legacy struct { - Cppflags []string - } - Uses_qti_camera_device struct { - Cppflags []string - Shared_libs []string - } - Uses_qcom_um_family struct { - Cflags []string - Srcs []string - } - Uses_qcom_um_3_18_family struct { - Header_libs []string - Shared_libs []string - } - Uses_qcom_um_4_4_family struct { - Header_libs []string - Shared_libs []string - } - Uses_qcom_um_4_9_family struct { - Header_libs []string - Shared_libs []string - } - Uses_qcom_um_4_14_family struct { - Header_libs []string - Shared_libs []string - } -} - -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"` - Java_Source_Overlays *string `json:",omitempty"` - Should_skip_waiting_for_qsee *bool `json:",omitempty"` - Specific_camera_parameter_library *string `json:",omitempty"` - Supports_hw_fde *bool `json:",omitempty"` - Supports_hw_fde_perf *bool `json:",omitempty"` - Supports_legacy_hw_fde *bool `json:",omitempty"` - Target_omx_legacy_rescaling *bool `json:",omitempty"` - Target_process_sdk_version_override *string `json:",omitempty"` - Target_shim_libs *string `json:",omitempty"` - Uses_generic_camera_parameter_library *bool `json:",omitempty"` - Uses_metadata_as_fde_key *bool `json:",omitempty"` - Uses_nvidia_enhancements *bool `json:",omitempty"` - Uses_qcom_bsp_legacy *bool `json:",omitempty"` - Uses_qti_camera_device *bool `json:",omitempty"` - Uses_qcom_um_family *bool `json:",omitempty"` - Uses_qcom_um_3_18_family *bool `json:",omitempty"` - Uses_qcom_um_4_4_family *bool `json:",omitempty"` - Uses_qcom_um_4_9_family *bool `json:",omitempty"` - Uses_qcom_um_4_14_family *bool `json:",omitempty"` -} |