1
- Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows
1
+ Chromium Embedded Framework (CEF) Minimal Binary Distribution for Windows
2
2
-------------------------------------------------------------------------------
3
3
4
- Date: August 18, 2016
4
+ Date: December 15, 2017
5
5
6
- CEF Version: 3.3202.1686.gd665578
6
+ CEF Version: 3.3239.1700.g385b2d4
7
7
CEF URL: https://bitbucket.org/chromiumembedded/cef.git
8
- @37d988bda8bdff39f538ace426040faab1599b58
8
+ @385b2d4fb747dd6b5c221b5db16f8d2b1af24360
9
9
10
- Chromium Verison: 62 .0.3202.94
10
+ Chromium Version: 63 .0.3239.70
11
11
Chromium URL: https://chromium.googlesource.com/chromium/src.git
12
- @feb0ea45a0164eef52aa2631dd95d7c85fa65faa
12
+ @3d78ebd1cd0d307a66113ec7793e59a2ca9afbf2
13
13
14
- This distribution contains all components necessary to build and distribute an
15
- application using CEF on the Windows platform. Please see the LICENSING
16
- section of this document for licensing terms and conditions.
14
+ This distribution contains the minimial components necessary to build and
15
+ distribute an application using CEF on the Windows platform. Please see
16
+ the LICENSING section of this document for licensing terms and conditions.
17
17
18
18
19
19
CONTENTS
20
20
--------
21
21
22
- cefclient Contains the cefclient sample application configured to build
23
- using the files in this distribution. This application demonstrates
24
- a wide range of CEF functionalities.
25
-
26
- cefsimple Contains the cefsimple sample application configured to build
27
- using the files in this distribution. This application demonstrates
28
- the minimal functionality required to create a browser window.
29
-
30
22
cmake Contains CMake configuration files shared by all targets.
31
23
32
- Debug Contains libcef.dll, libcef.lib and other components required to
33
- build and run the debug version of CEF-based applications. By
34
- default these files should be placed in the same directory as the
35
- executable and will be copied there as part of the build process.
36
-
37
24
include Contains all required CEF header files.
38
25
39
26
libcef_dll Contains the source code for the libcef_dll_wrapper static library
@@ -42,11 +29,10 @@ libcef_dll Contains the source code for the libcef_dll_wrapper static library
42
29
Release Contains libcef.dll, libcef.lib and other components required to
43
30
build and run the release version of CEF-based applications. By
44
31
default these files should be placed in the same directory as the
45
- executable and will be copied there as part of the build process .
32
+ executable.
46
33
47
34
Resources Contains resources required by libcef.dll. By default these files
48
- should be placed in the same directory as libcef.dll and will be
49
- copied there as part of the build process.
35
+ should be placed in the same directory as libcef.dll.
50
36
51
37
52
38
USAGE
@@ -73,12 +59,16 @@ The following components are required. CEF will not function without them.
73
59
* CEF core library.
74
60
* libcef.dll
75
61
62
+ * Crash reporting library.
63
+ * chrome_elf.dll
64
+
76
65
* Unicode support data.
77
66
* icudtl.dat
78
67
79
68
* V8 snapshot data.
80
69
* natives_blob.bin
81
70
* snapshot_blob.bin
71
+ * v8_context_snapshot.bin
82
72
83
73
Optional components:
84
74
@@ -88,8 +78,8 @@ run but any related functionality may become broken or disabled.
88
78
* Localized resources.
89
79
Locale file loading can be disabled completely using
90
80
CefSettings.pack_loading_disabled. The locales directory path can be
91
- customized using CefSettings.locales_dir_path.
92
-
81
+ customized using CefSettings.locales_dir_path.
82
+
93
83
* locales/
94
84
Directory containing localized resources used by CEF, Chromium and Blink. A
95
85
.pak file is loaded from this directory based on the CefSettings.locale
@@ -126,6 +116,17 @@ run but any related functionality may become broken or disabled.
126
116
Without these files HTML5 accelerated content like 2D canvas, 3D CSS and WebGL
127
117
will not function.
128
118
119
+ * SwiftShader support.
120
+ * swiftshader/libEGL.dll
121
+ * swiftshader/libGLESv2.dll
122
+ Without these files WebGL will not function in software-only mode when the GPU
123
+ is not available or disabled.
124
+
125
+ * Widevine CDM support.
126
+ * widevinecdmadapter.dll
127
+ Without this file playback of Widevine projected content will not function.
128
+ See the CefRegisterWidevineCdm() function in cef_web_plugin.h for usage.
129
+
129
130
130
131
LICENSING
131
132
---------
0 commit comments