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/
32 lines
925 B
Plaintext
32 lines
925 B
Plaintext
--- net/dns/BUILD.gn.orig 2024-06-30 11:48:27 UTC
|
|
+++ net/dns/BUILD.gn
|
|
@@ -138,7 +138,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",
|
|
@@ -179,6 +179,7 @@ source_set("dns") {
|
|
":host_resolver_manager",
|
|
":mdns_client",
|
|
"//net:net_public_deps",
|
|
+ "//printing/buildflags",
|
|
]
|
|
|
|
allow_circular_includes_from = [
|
|
@@ -449,9 +450,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" ]
|
|
}
|
|
|