diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-06-27 12:46:02 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-07-01 08:58:18 +0000 |
commit | 63e0ea358f1902b1dd9968b21b5eea649d04329e (patch) | |
tree | 4231493c300f4d9ea2c84b6e290919486bf7e0b6 /recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch | |
parent | 9eda76e3a9c869030ff4bcf66704207753666a6c (diff) |
Move html5 demo into sublayer
The HTML5 demo needs additional fixes. Move it into a sublayer and activate with agl-demo-html5.
Bug-AGL: SPEC-5188
Change-Id: I2f1a07dcfbcaf7e09d4d0d3aec1aa8f096336287
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30042
ci-image-build: Jenkins Job builder account
Tested-by: Jenkins Job builder account
Reviewed-by: Scott Murray <scott.murray@konsulko.com>
ci-image-boot-test: Jenkins Job builder account
Diffstat (limited to 'recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch')
-rw-r--r-- | recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch b/recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch deleted file mode 100644 index 39e5c6054..000000000 --- a/recipes-wam/cef/files/chromium/0022-M118-fix-Fix-aggregate-initialization-in-trace_log.patch +++ /dev/null @@ -1,34 +0,0 @@ -From a46e381a9007ab552d4551711611cd9d231a9f17 Mon Sep 17 00:00:00 2001 -From: Roger Zanoni <rzanoni@igalia.com> -Date: Wed, 25 Oct 2023 15:59:23 -0300 -Subject: [PATCH 22/33] [M118-fix] Fix aggregate initialization in trace_log - -clang 14 doesn't parenthesized initialization of aggregates, so we are -explicitly defining the needed constructor. - -Upstream-Status: Inappropriate -Signed-off-by: Roger Zanoni <rzanoni@igalia.com> ---- - base/trace_event/trace_log.h | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/base/trace_event/trace_log.h b/base/trace_event/trace_log.h -index 2778526e87b78..3b7e0f0306cf5 100644 ---- a/base/trace_event/trace_log.h -+++ b/base/trace_event/trace_log.h -@@ -420,6 +420,12 @@ class BASE_EXPORT TraceLog : - - #if BUILDFLAG(USE_PERFETTO_CLIENT_LIBRARY) - struct TrackEventSession { -+ TrackEventSession(uint32_t internal_instance_index, -+ perfetto::DataSourceConfig config, -+ perfetto::BackendType backend_type = perfetto::kUnspecifiedBackend) -+ : internal_instance_index{internal_instance_index} -+ , config{config} -+ , backend_type{backend_type} {} - uint32_t internal_instance_index; - perfetto::DataSourceConfig config; - perfetto::BackendType backend_type = perfetto::kUnspecifiedBackend; --- -2.42.1 - |