Very big thanks go again to kai@ who provided the www/qt5-webengine upgrade (to 5.14.0). Notably, video capture support was re-enabled. Announcement: https://www.qt.io/blog/qt-5.14-has-released PR: 244964 Exp-run by: antoine
95 lines
3.4 KiB
Text
95 lines
3.4 KiB
Text
--- src/3rdparty/chromium/BUILD.gn.orig 2019-11-27 21:12:25 UTC
|
|
+++ src/3rdparty/chromium/BUILD.gn
|
|
@@ -400,7 +400,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",
|
|
@@ -441,8 +441,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",
|
|
]
|
|
|
|
@@ -497,10 +495,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",
|
|
@@ -567,10 +561,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) {
|
|
@@ -644,7 +634,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)" ]
|
|
}
|
|
|
|
@@ -783,7 +773,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" ]
|
|
@@ -902,7 +891,6 @@ if (is_chromeos) {
|
|
"//ppapi/examples/video_decode",
|
|
"//sandbox/linux:chrome_sandbox",
|
|
"//sandbox/linux:sandbox_linux_unittests",
|
|
- "//third_party/breakpad:minidump_stackwalk($host_toolchain)",
|
|
|
|
# Blocked on https://github.com/catapult-project/catapult/issues/2297
|
|
#"//third_party/catapult/telemetry:bitmaptools",
|
|
@@ -1070,7 +1058,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)" ]
|
|
}
|
|
@@ -1079,7 +1067,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)" ]
|
|
}
|
|
|
|
@@ -1221,9 +1209,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 += [
|