From 9ee8d2c848c5971dfb5ca04474854e11463207f6 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 28 May 2025 13:24:47 -0400 Subject: [PATCH] bootstrap: Add missing deps for bootstrap-only build (see #3935) --- BUILD.gn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 8a3340ea0..5f51758c4 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -383,6 +383,10 @@ if (is_win) { # Required by content_switches.cc "//media:media_buildflags", + # Required by crash_keys.cc + "//content/public/common:buildflags", + "//tools/v8_context_snapshot:buildflags", + # Required by crash_keys.cc (from base/stl_util.h) "//third_party/abseil-cpp:absl", ] @@ -1281,6 +1285,7 @@ if (is_win) { ] bootstrap_deps = [ + ":make_api_versions_header", ":make_config_header", ":make_version_header", "//base",