From c5da38dee798c0ef216c47f4221634991f49acfe Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 2 Feb 2022 15:10:34 -0500 Subject: [PATCH] Make cef_config.h generation a dependency of libcef_dll_wrapper (see issue #2926) The libcef_dll_wrapper target may be built very early due to minimal dependencies. Make sure that cef_config.h is generated first as it will be included via `include/internal/cef_types_linux.h` on Linux. --- BUILD.gn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index a2d42c895..e73860900 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -1291,6 +1291,8 @@ static_library("libcef_dll_wrapper") { configs += [ ":libcef_dll_wrapper_config" ] public_configs = [ ":libcef_dll_wrapper_config" ] + + deps = [ ":cef_make_headers" ] }