Skip to content
Snippets Groups Projects
Commit 8beb8289 authored by Jason E. Hale's avatar Jason E. Hale
Browse files

www/ungoogled-chromium: Fix build with ninja 1.12.0

Fix race conditions where generated headers are not created before they
are needed in the build.

PR:		278693
Approved by:	portmgr (blanket)
parent 6d647fd8
No related merge requests found
--- chrome/browser/devtools/BUILD.gn.orig 2024-04-30 23:46:45 UTC
+++ chrome/browser/devtools/BUILD.gn
@@ -113,6 +113,7 @@ static_library("devtools") {
"//chrome/browser/autofill:autofill",
"//components/autofill/content/browser:browser",
"//components/autofill/core/browser:browser",
+ "//components/enterprise/buildflags",
"//components/paint_preview/buildflags:buildflags",
"//content/public/browser",
"//net",
--- chrome/browser/extensions/BUILD.gn.orig 2024-04-23 07:42:17 UTC
--- chrome/browser/extensions/BUILD.gn.orig 2024-04-24 01:31:09 UTC
+++ chrome/browser/extensions/BUILD.gn
@@ -1378,6 +1378,10 @@ static_library("extensions") {
@@ -826,6 +826,7 @@ static_library("extensions") {
"//components/device_reauth",
"//components/optimization_guide/core:features",
"//components/safe_browsing/content/browser",
+ "//components/safe_browsing/content/common/proto:download_file_types_proto",
"//components/safe_browsing/core/browser:safe_browsing_metrics_collector",
"//components/security_interstitials/content:security_interstitial_page",
"//components/site_engagement/core/mojom:mojo_bindings",
@@ -1384,6 +1385,10 @@ static_library("extensions") {
deps += [ "//chrome/services/printing/public/mojom" ]
}
......
--- net/dns/BUILD.gn.orig 2024-04-23 07:42:17 UTC
--- net/dns/BUILD.gn.orig 2024-04-30 23:47:00 UTC
+++ net/dns/BUILD.gn
@@ -136,7 +136,7 @@ source_set("dns") {
"dns_config_service_android.cc",
......@@ -9,7 +9,17 @@
sources += [
"dns_config_service_linux.cc",
"dns_config_service_linux.h",
@@ -177,6 +177,7 @@ source_set("dns") {
@@ -170,6 +170,9 @@ source_set("dns") {
}
deps = [ "//net:net_deps" ]
+ if (is_bsd) {
+ deps += [ "//services/screen_ai/buildflags" ]
+ }
public_deps = [
":dns_client",
@@ -177,6 +180,7 @@ source_set("dns") {
":host_resolver_manager",
":mdns_client",
"//net:net_public_deps",
......@@ -17,7 +27,7 @@
]
allow_circular_includes_from = [
@@ -444,9 +445,9 @@ source_set("tests") {
@@ -444,9 +448,9 @@ source_set("tests") {
if (is_android) {
sources += [ "dns_config_service_android_unittest.cc" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment