head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.04.30.06.39.44; author adam; state Exp; branches; next ; commitid EBfLiYmrAFQ3VWDG; desc @@ 1.1 log @qt6-qtwebengine: updated to 6.11.0 The 6.11 release for Qt Framework is now available, with improved performance, newly supported techniques and capabilities on graphics, connectivity and languages, not to mention a whole new approach to asynchronous C++ coding. Take a closer look. https://www.qt.io/blog/qt-6.11-released @ text @$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- src/3rdparty/chromium/tools/code_cache_generator/BUILD.gn.orig 2026-03-16 11:40:07.000000000 +0000 +++ src/3rdparty/chromium/tools/code_cache_generator/BUILD.gn @@@@ -15,8 +15,34 @@@@ if (is_android) { import("//build/config/android/rules.gni") } -executable("code_cache_generator") { +group("code_cache_generator") { + deps = [ ":code_cache_generator_executable" ] + if (target_os == "netbsd") { + deps+= [ ":run_paxctl_code_cache_generator" ] + } +} + +action("run_paxctl_code_cache_generator") { + deps = [ ":code_cache_generator_executable" ] + + script = "//v8/tools/run-paxctl.py" + stamp = "$target_gen_dir/paxctl_stamp" + outputs = [ stamp ] + + sources = [] + data = [] + + args = [ + rebase_path(stamp, root_build_dir), + "/usr/sbin/paxctl", "+m", + "./" + rebase_path(get_label_info(":code_cache_generator_executable", "root_out_dir") + "/code_cache_generator", + root_build_dir), + ] +} + +executable("code_cache_generator_executable") { sources = [ "code_cache_generator.cc" ] + output_name = "code_cache_generator" deps = [ "//gin", @