Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meta-chromium/recipes-browser/chromium/chromium-gn.inc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ SRC_URI += "\
file://Backport-151-Only-pass-sysroot-if-use_sysroot.patch \
file://Backport-151-build-Omit-ar-from-inputs-when-resolved-via-PATH.patch \
file://Backport-151-build-Fix-get_path_info-on-empty-ar-in-unbundle-tool.patch \
file://0014-add-missing-logging-header.patch \
"

# ARM/AArch64-specific patches.
Expand Down
4 changes: 2 additions & 2 deletions meta-chromium/recipes-browser/chromium/chromium.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOMEPAGE = "https://www.chromium.org/Home"
CVE_PRODUCT = "chromium:chromium google:chrome"

SRC_URI = "https://commondatastorage.googleapis.com/chromium-browser-official/chromium-${PV}.tar.xz"
SRC_URI[sha256sum] = "b2332eb0f96b84e56b29959630a61d6e2c38bec54e6e4026ce20f12b3454ddda"
SRC_URI[sha256sum] = "aea4fe88390bc7296c1be9db958cdcacd8ab7bc5a1f69eb691cc9e34a1444790"
S = "${UNPACKDIR}/chromium-${PV}"

# GCC is not tested or officially supported upstream, and supporting it here
Expand Down Expand Up @@ -55,7 +55,7 @@ DEPENDS += "python3-setuptools-native"
# LICENSE does not cover all the licenses in LIC_FILES_CHKSUM; instead, it
# currently contains Chromium's license (BSD-3-Clause) as well as Blink's
# (LGPL2.0, LGPL2.1 and BSD-2-Clause).
LICENSE = "BSD-3-Clause & LGPL-2.0-or-later & LGPL-2.1-or-later"
LICENSE = "BSD-3-Clause AND LGPL-2.0-or-later AND LGPL-2.1-or-later"

# The generate_license_list.py script can help generate and update this list.
LIC_FILES_CHKSUM = "\
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
From 47cfc23814e8abb38635c0d4fab1e721030030cd Mon Sep 17 00:00:00 2001
From: Thorsten Lannynd <t-lannynd@ti.com>
Date: Mon, 20 Jul 2026 14:12:51 -0500
Subject: [PATCH] add missing logging header

Upstream-Status: Pending
Signed-off-by: Thorsten Lannynd <t-lannynd@ti.com>
---
media/gpu/sandbox/hardware_video_decoding_sandbox_hook_linux.cc | 1 +
1 file changed, 1 insertion(+)

diff --git a/media/gpu/sandbox/hardware_video_decoding_sandbox_hook_linux.cc b/media/gpu/sandbox/hardware_video_decoding_sandbox_hook_linux.cc
index 58a9b95e81..6b26e3e4a9 100644
--- a/media/gpu/sandbox/hardware_video_decoding_sandbox_hook_linux.cc
+++ b/media/gpu/sandbox/hardware_video_decoding_sandbox_hook_linux.cc
@@ -7,6 +7,7 @@
#include <dlfcn.h>
#include <sys/stat.h>

+#include "base/logging.h"
#include "base/process/process_metrics.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
--
2.34.1