Skip to content

Commit 78744f9

Browse files
committed
Update to CEF version 3.2883.1536.ga8ecb19
1 parent d1089f4 commit 78744f9

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ set_property(GLOBAL PROPERTY OS_FOLDERS ON)
120120
#
121121

122122
# Specify the CEF distribution version.
123-
set(CEF_VERSION "3.2840.1518.gffd843c")
123+
set(CEF_VERSION "3.2883.1536.ga8ecb19")
124124

125125
# Determine the platform.
126126
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")

java/org/cef/CefApp.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ private CefApp(String [] args, CefSettings settings)
150150
settings_ = settings.clone();
151151
if (OS.isWindows()) {
152152
System.loadLibrary("jawt");
153+
System.loadLibrary("chrome_elf");
153154
System.loadLibrary("libcef");
154155
} else if (OS.isLinux()) {
155156
System.loadLibrary("cef");

tools/make_distrib.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ xcopy /sfy %SOURCE_PATH%\tests\* %DISTRIB_BIN_PATH%\tests\
6161

6262
:: Copy CEF Release files to the lib directory.
6363
if not exist %DISTRIB_LIB_PATH% mkdir %DISTRIB_LIB_PATH%
64+
copy %OUT_BINARY_PATH%\chrome_elf.dll %DISTRIB_LIB_PATH%
6465
copy %OUT_BINARY_PATH%\icudt.dll %DISTRIB_LIB_PATH%
6566
copy %OUT_BINARY_PATH%\jcef.dll %DISTRIB_LIB_PATH%
6667
copy %OUT_BINARY_PATH%\jcef_helper.exe %DISTRIB_LIB_PATH%

0 commit comments

Comments
 (0)