Finally, after a long wait, an electron port for FreeBSD lands in the portstree. A huge thanks to everyone contributed to this huge effort and to the maintainer that is willing to take the burden of the maintainership!
87 lines
3 KiB
Text
87 lines
3 KiB
Text
--- BUILD.gn.orig 2019-03-15 06:36:52 UTC
|
|
+++ BUILD.gn
|
|
@@ -354,7 +354,7 @@ group("gn_all") {
|
|
[ "//third_party/android_crazy_linker:android_crazy_linker_zip_fuzzer" ]
|
|
}
|
|
|
|
- if (is_linux || is_android) {
|
|
+ if ((is_linux && !is_bsd) || is_android) {
|
|
deps += [
|
|
"//third_party/breakpad:breakpad_unittests",
|
|
"//third_party/breakpad:core-2-minidump",
|
|
@@ -396,8 +396,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",
|
|
]
|
|
|
|
@@ -454,10 +452,6 @@ group("gn_all") {
|
|
"//chrome/test/chromedriver:chromedriver",
|
|
"//chrome/test/chromedriver:chromedriver_tests",
|
|
"//components/sync:run_sync_testserver",
|
|
- "//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",
|
|
@@ -513,10 +507,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) {
|
|
@@ -593,7 +583,7 @@ group("gn_all") {
|
|
host_os == "win") {
|
|
deps += [ "//chrome/test/mini_installer:mini_installer_tests" ]
|
|
}
|
|
- } else if (!is_android && !is_ios && !is_fuchsia) {
|
|
+ } else if (!is_android && !is_ios && !is_fuchsia && !is_bsd) {
|
|
deps += [ "//third_party/breakpad:symupload($host_toolchain)" ]
|
|
}
|
|
|
|
@@ -819,7 +809,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",
|
|
@@ -942,7 +931,7 @@ if (!is_ios) {
|
|
]
|
|
}
|
|
|
|
- if (!is_win && !is_android) {
|
|
+ if (!is_win && !is_android && !is_bsd) {
|
|
data_deps +=
|
|
[ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ]
|
|
}
|
|
@@ -951,7 +940,7 @@ if (!is_ios) {
|
|
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)" ]
|
|
}
|
|
|
|
@@ -1076,9 +1065,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 += [
|