From 4907ec52f3fe52eea2c5b759f6bbf7c99a295afe Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 29 Oct 2019 17:29:29 -0400 Subject: [PATCH] Windows: Fix cef_sandbox.lib link errors (fixes issue #2792) --- cmake/cef_variables.cmake.in | 1 + tools/make_distrib.py | 1 + 2 files changed, 2 insertions(+) diff --git a/cmake/cef_variables.cmake.in b/cmake/cef_variables.cmake.in index 41eecdaa1..9a7c7b073 100644 --- a/cmake/cef_variables.cmake.in +++ b/cmake/cef_variables.cmake.in @@ -506,6 +506,7 @@ if(OS_WINDOWS) # Libraries required by cef_sandbox.lib. set(CEF_SANDBOX_STANDARD_LIBS dbghelp.lib + Delayimp.lib PowrProf.lib Propsys.lib psapi.lib diff --git a/tools/make_distrib.py b/tools/make_distrib.py index 265832ebd..ad7845d37 100644 --- a/tools/make_distrib.py +++ b/tools/make_distrib.py @@ -845,6 +845,7 @@ if platform == 'windows': sandbox_libs = [ 'obj\\base\\base.lib', 'obj\\base\\base_static.lib', + 'obj\\base\\third_party\\double_conversion\\double_conversion.lib', 'obj\\base\\third_party\\dynamic_annotations\\dynamic_annotations.lib', 'obj\\base\\win\\pe_image.lib', cef_sandbox_lib,