Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
31 lines
925 B
Text
31 lines
925 B
Text
--- net/dns/BUILD.gn.orig 2022-09-24 10:57:32 UTC
|
|
+++ net/dns/BUILD.gn
|
|
@@ -113,7 +113,7 @@ source_set("dns") {
|
|
"dns_config_service_android.cc",
|
|
"dns_config_service_android.h",
|
|
]
|
|
- } else if (is_linux) {
|
|
+ } else if (is_linux && !is_bsd) {
|
|
sources += [
|
|
"dns_config_service_linux.cc",
|
|
"dns_config_service_linux.h",
|
|
@@ -154,6 +154,7 @@ source_set("dns") {
|
|
":host_resolver_manager",
|
|
":mdns_client",
|
|
"//net:net_public_deps",
|
|
+ "//printing/buildflags",
|
|
]
|
|
|
|
allow_circular_includes_from = [
|
|
@@ -416,9 +417,9 @@ source_set("tests") {
|
|
|
|
if (is_android) {
|
|
sources += [ "dns_config_service_android_unittest.cc" ]
|
|
- } else if (is_linux) {
|
|
+ } else if (is_linux && !is_bsd) {
|
|
sources += [ "dns_config_service_linux_unittest.cc" ]
|
|
- } else if (is_posix) {
|
|
+ } else if (is_posix && !is_bsd) {
|
|
sources += [ "dns_config_service_posix_unittest.cc" ]
|
|
}
|
|
|