Add cef_sandbox dependency on make_config_header (see #3685)
This commit is contained in:
parent
b6842f8b80
commit
b0bceecba9
9
BUILD.gn
9
BUILD.gn
|
@ -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",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue