From 8eb04d972b9d2887246619e203f948292a4234c6 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Sun, 7 Jan 2024 02:14:53 -0800 Subject: [PATCH 1/2] #621 add libvulkan.so.1 see https://source.chromium.org/chromium/chromium/src/+/main:infra/archive_config/linux-archive-rel.json --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7d9b94bc..014d0184 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -164,6 +164,7 @@ jobs: cp $OUTPUTFILE_LIN/icudtl.dat chrome-lin/ cp $OUTPUTFILE_LIN/libEGL.so chrome-lin/ cp $OUTPUTFILE_LIN/libGLESv2.so chrome-lin/ + cp $OUTPUTFILE_LIN/libvulkan.so.1 chrome-lin/ cp $OUTPUTFILE_LIN/libqt5_shim.so chrome-lin/ cp $OUTPUTFILE_LIN/libqt6_shim.so chrome-lin/ cp $OUTPUTFILE_LIN/libvk_swiftshader.so chrome-lin/ From e74225ae3dda2d6cf74f72ed946003bb7ee0216d Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Sun, 7 Jan 2024 02:17:21 -0800 Subject: [PATCH 2/2] #665 Enable JXL support in linux builds --- build/cromite.gn_args | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/cromite.gn_args b/build/cromite.gn_args index 3d2bc2d5..c9cd1258 100644 --- a/build/cromite.gn_args +++ b/build/cromite.gn_args @@ -54,6 +54,9 @@ use_relr_relocations=false # see https://github.com/uazo/cromite/pull/317 for context use_v8_context_snapshot = false +# enable libjxl support by default +enable_jxl_decoder = true + declare_args() { _is_debug_build = "" }