- Refresh patch: * chromium-non-void-return.patch - Add new patch to fix aarch64 build: * chromium-fix_swiftshader.patch - Update %arm build, but keep it disabled for now, as ld requires lots of RAM - Up to 72.0.3626.14 - Update chromium-vaapi.patch - Update chromium-system-icu.patch - Increase %limit_build value to avoid OOM - Rework aarch64 build requirements - Reduce jumbo_file_merge_limit to 8 for aarch64 to avoid OOM - Fix again aarch64 skia build: * chromium-skia-aarch64-buildfix.patch - Up to 71.0.3551.3 - Up to 70.0.3528.4 - Up to chromium-70.0.3521.2 - Add patch trying to build with system icu: * chromium-system-icu.patch - Up to chromium-70.0.3510.0 - Up to 69.0.3497.23 - Up to chromium-69.0.3497.12 - Add patch to fix aarch64 build: * chromium-vpx-aarch64.patch - Up to 69.0.3493.3 - Up to 69.0.3486.0 - Up to 69.0.3472.3 - Up to 69.0.3452.0 - Up to 68.0.3440.17 OBS-URL: https://build.opensuse.org/request/show/708453 OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium?expand=0&rev=1258
43 lines
2.1 KiB
Diff
43 lines
2.1 KiB
Diff
Index: chromium-75.0.3770.80/third_party/angle/src/common/debug.h
|
|
===================================================================
|
|
--- chromium-75.0.3770.80.orig/third_party/angle/src/common/debug.h
|
|
+++ chromium-75.0.3770.80/third_party/angle/src/common/debug.h
|
|
@@ -248,7 +248,7 @@ std::ostream &FmtHex(std::ostream &os, T
|
|
# define EVENT(message, ...) (void(0))
|
|
#endif
|
|
|
|
-#if defined(COMPILER_GCC) || defined(__clang__)
|
|
+#if defined(__GNUC__) || defined(__clang__)
|
|
# define ANGLE_CRASH() __builtin_trap()
|
|
#else
|
|
# define ANGLE_CRASH() ((void)(*(volatile char *)0 = 0)), __assume(0)
|
|
Index: chromium-75.0.3770.80/cc/scheduler/compositor_frame_reporting_controller.cc
|
|
===================================================================
|
|
--- chromium-75.0.3770.80.orig/cc/scheduler/compositor_frame_reporting_controller.cc
|
|
+++ chromium-75.0.3770.80/cc/scheduler/compositor_frame_reporting_controller.cc
|
|
@@ -31,8 +31,8 @@ void CompositorFrameReportingController:
|
|
|
|
void CompositorFrameReportingController::WillBeginMainFrame() {
|
|
DCHECK(reporters_[PipelineStage::kBeginImplFrame]);
|
|
- DCHECK_NE(reporters_[PipelineStage::kBeginMainFrame],
|
|
- reporters_[PipelineStage::kBeginImplFrame]);
|
|
+ DCHECK(reporters_[PipelineStage::kBeginMainFrame] !=
|
|
+ reporters_[PipelineStage::kBeginImplFrame]);
|
|
reporters_[PipelineStage::kBeginImplFrame]->StartStage(
|
|
"SendBeginMainFrameToCommit");
|
|
AdvanceReporterStage(PipelineStage::kBeginImplFrame,
|
|
Index: chromium-75.0.3770.80/components/omnibox/browser/autocomplete_match.cc
|
|
===================================================================
|
|
--- chromium-75.0.3770.80.orig/components/omnibox/browser/autocomplete_match.cc
|
|
+++ chromium-75.0.3770.80/components/omnibox/browser/autocomplete_match.cc
|
|
@@ -154,8 +154,7 @@ AutocompleteMatch::AutocompleteMatch(con
|
|
additional_info(match.additional_info),
|
|
duplicate_matches(match.duplicate_matches) {}
|
|
|
|
-AutocompleteMatch::AutocompleteMatch(AutocompleteMatch&& match) noexcept =
|
|
- default;
|
|
+AutocompleteMatch::AutocompleteMatch(AutocompleteMatch&& match) = default;
|
|
|
|
AutocompleteMatch::~AutocompleteMatch() {
|
|
}
|