mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 15:59:18 -04:00
* Under the hood runs Chromium 83.0.4103.122 with security fixes up to version 86.0.4240.183 and patches were taken from r540991 of www/chromium. * Also adjust some patches to avoid hardcoding of ${LOCALBASE} and remove a redundant blank line. Changelog: * [QTBUG-84632] Warn about QtWebengineProcess launching from network share on Windows. * [QTBUG-85363] Handle non-ASCII names for PulseAudio * [QTBUG-85494] Fix regression crash when not handling QQuickWebEngineNewViewRequest * [QTBUG-85817] Fix crashes on resize * [QTBUG-86672] Fix remapped menu key being mapped back to menu key * [QTBUG-86945] Fix crash when opening a PDF in debug build on windows. * [QTBUG-87129] Mention node.js build-time dependency * The QtWebEngineProcess now has a version number * The old compositor has been removed and can no longer be restored using command line argument. Approved by: tcberner (kde) Differential Revision: https://reviews.freebsd.org/D27587
87 lines
3 KiB
Text
87 lines
3 KiB
Text
--- src/3rdparty/chromium/BUILD.gn.orig 2020-11-07 01:22:36 UTC
|
|
+++ src/3rdparty/chromium/BUILD.gn
|
|
@@ -419,7 +419,7 @@ group("gn_all") {
|
|
]
|
|
}
|
|
|
|
- if (is_linux || is_android) {
|
|
+ if ((is_linux && !is_bsd) || is_android) {
|
|
deps += [
|
|
"//third_party/breakpad:breakpad_unittests",
|
|
"//third_party/breakpad:core-2-minidump",
|
|
@@ -460,8 +460,6 @@ group("gn_all") {
|
|
"//net:disk_cache_memory_test",
|
|
"//net:quic_client",
|
|
"//net:quic_server",
|
|
- "//sandbox/linux:chrome_sandbox",
|
|
- "//sandbox/linux:sandbox_linux_unittests",
|
|
"//testing:empty_main",
|
|
]
|
|
|
|
@@ -516,10 +514,6 @@ group("gn_all") {
|
|
"//chrome/test:load_library_perf_tests",
|
|
"//chrome/test:sync_performance_tests",
|
|
"//chrome/test/chromedriver:chromedriver",
|
|
- "//courgette:courgette",
|
|
- "//courgette:courgette_fuzz",
|
|
- "//courgette:courgette_minimal_tool",
|
|
- "//courgette:courgette_unittests",
|
|
"//media/cast:generate_barcode_video",
|
|
"//media/cast:generate_timecode_audio",
|
|
"//net:crash_cache",
|
|
@@ -592,10 +586,6 @@ group("gn_all") {
|
|
"//mojo:mojo_perftests",
|
|
"//services/service_manager/public/cpp",
|
|
"//testing/gmock:gmock_main",
|
|
- "//third_party/breakpad:dump_syms($host_toolchain)",
|
|
- "//third_party/breakpad:microdump_stackwalk($host_toolchain)",
|
|
- "//third_party/breakpad:minidump_dump($host_toolchain)",
|
|
- "//third_party/breakpad:minidump_stackwalk($host_toolchain)",
|
|
]
|
|
|
|
if (!is_android) {
|
|
@@ -669,7 +659,7 @@ group("gn_all") {
|
|
host_os == "win" && !use_qt) {
|
|
deps += [ "//chrome/test/mini_installer:mini_installer_tests" ]
|
|
}
|
|
- } else if (!is_android && !is_ios && !is_fuchsia && !is_win) {
|
|
+ } else if (!is_android && !is_ios && !is_fuchsia && !is_win && !is_bsd) {
|
|
deps += [ "//third_party/breakpad:symupload($host_toolchain)" ]
|
|
}
|
|
|
|
@@ -802,7 +792,6 @@ group("gn_all") {
|
|
"//chrome/browser/vr:vr_common_perftests",
|
|
"//chrome/browser/vr:vr_common_unittests",
|
|
"//chrome/browser/vr:vr_pixeltests",
|
|
- "//tools/perf/contrib/vr_benchmarks:vr_perf_tests",
|
|
]
|
|
if (is_desktop_linux && use_ozone) {
|
|
deps += [ "//chrome/browser/vr/testapp:vr_testapp" ]
|
|
@@ -1085,7 +1074,7 @@ if (!is_ios && !use_qt) {
|
|
]
|
|
}
|
|
|
|
- if (!is_win && !is_android) {
|
|
+ if (!is_win && !is_android && !is_bsd) {
|
|
data_deps +=
|
|
[ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ]
|
|
}
|
|
@@ -1094,7 +1083,7 @@ if (!is_ios && !use_qt) {
|
|
data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ]
|
|
}
|
|
|
|
- if (is_linux) {
|
|
+ if (is_linux && !is_bsd) {
|
|
data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ]
|
|
}
|
|
|
|
@@ -1286,9 +1275,6 @@ group("chromium_builder_perf") {
|
|
|
|
if (is_win) {
|
|
data_deps += [ "//chrome/installer/mini_installer:mini_installer" ]
|
|
- } else {
|
|
- data_deps +=
|
|
- [ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ]
|
|
}
|
|
if (is_win || is_android) {
|
|
data_deps += [
|