Add cef_sandbox dependency on make_config_header (see #3685)

This commit is contained in:
Marshall Greenblatt 2024-05-26 12:40:10 -04:00
parent b6842f8b80
commit b0bceecba9
1 changed files with 7 additions and 2 deletions

View File

@ -1315,7 +1315,11 @@ if (is_win) {
static_library("cef_sandbox") { static_library("cef_sandbox") {
sources = [ "libcef_dll/sandbox/sandbox_win.cc" ] sources = [ "libcef_dll/sandbox/sandbox_win.cc" ]
configs += [ ":libcef_includes_config" ] configs += [ ":libcef_includes_config" ]
deps = [ "libcef/features", "//sandbox" ] deps = [
":make_config_header",
"libcef/features",
"//sandbox",
]
} }
} }
@ -1324,8 +1328,9 @@ if (is_mac) {
sources = [ "libcef_dll/sandbox/sandbox_mac.mm" ] sources = [ "libcef_dll/sandbox/sandbox_mac.mm" ]
configs += [ ":libcef_includes_config" ] configs += [ ":libcef_includes_config" ]
deps = [ deps = [
":make_config_header",
"//build/config:executable_deps", "//build/config:executable_deps",
"//sandbox/mac:seatbelt" "//sandbox/mac:seatbelt",
] ]
} }
} }