diff options
author | 2020-11-08 13:28:49 +0100 | |
---|---|---|
committer | 2020-11-08 13:34:19 +0100 | |
commit | 86e673d9139c02cc4760aed472ed0f7e0f015c04 (patch) | |
tree | 1de66293e5e3aa5299e94f561c7f6f5fe84e915d /www-client/chromium/files | |
parent | dev-lang/python: ppc64 stable (bug #753215) (diff) | |
download | gentoo-86e673d9139c02cc4760aed472ed0f7e0f015c04.tar.gz gentoo-86e673d9139c02cc4760aed472ed0f7e0f015c04.tar.bz2 gentoo-86e673d9139c02cc4760aed472ed0f7e0f015c04.zip |
www-client/chromium: dev channel bump to 88.0.4315.5
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r-- | www-client/chromium/files/chromium-88-ozone-deps.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-client/chromium/files/chromium-88-ozone-deps.patch b/www-client/chromium/files/chromium-88-ozone-deps.patch new file mode 100644 index 000000000000..6274ded44aca --- /dev/null +++ b/www-client/chromium/files/chromium-88-ozone-deps.patch @@ -0,0 +1,40 @@ +From a5a6050ed551972faaaa65ebc2b4e7e1958738a1 Mon Sep 17 00:00:00 2001 +From: Stephan Hartmann <stha09@googlemail.com> +Date: Fri, 6 Nov 2020 16:17:30 +0000 +Subject: [PATCH] fix building without Ozone + +When building with use_x11=true and use_ozone=false build fails, +because features::IsUsingOzonePlatform() is not defined: + +../../content/browser/gpu/gpu_internals_ui.cc: In function +'std::unique_ptr<base::ListValue> +content::{anonymous}::GpuMemoryBufferInfo(const gfx::GpuExtraInfo&)' +../../content/browser/gpu/gpu_internals_ui.cc:397:18: error: +'IsUsingOzonePlatform' is not a member of 'features' + 397 | if (!features::IsUsingOzonePlatform()) { + | ^~~~~~~~~~~~~~~~~~~~ +--- + content/browser/gpu/gpu_internals_ui.cc | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/content/browser/gpu/gpu_internals_ui.cc b/content/browser/gpu/gpu_internals_ui.cc +index 4f07186..01dfcbf 100644 +--- a/content/browser/gpu/gpu_internals_ui.cc ++++ b/content/browser/gpu/gpu_internals_ui.cc +@@ -394,7 +394,12 @@ std::unique_ptr<base::ListValue> GpuMemoryBufferInfo( + + gpu::GpuMemoryBufferConfigurationSet native_config; + #if defined(USE_X11) +- if (!features::IsUsingOzonePlatform()) { ++#if defined(USE_OZONE) ++ const auto is_using_ozone_platform = features::IsUsingOzonePlatform(); ++#else ++ const auto is_using_ozone_platform = false; ++#endif ++ if (!is_using_ozone_platform) { + for (const auto& config : gpu_extra_info.gpu_memory_buffer_support_x11) { + native_config.emplace(config); + } +-- +2.26.2 + |