• Home
Name Date Size #Lines LOC

..--

README.minimal.txtD12-May-2024944 2918

README.redistrib.txtD12-May-20242.4 KiB7155

README.standard.txtD12-May-20242 KiB5335

README.minimal.txt

1CONTENTS
2--------
3
4cmake       Contains CMake configuration files shared by all targets.
5
6include     Contains all required CEF header files.
7
8libcef_dll  Contains the source code for the libcef_dll_wrapper static library
9            that all applications using the CEF C++ API must link against.
10
11Release     Contains libcef.so and other components required to run the release
12            version of CEF-based applications. By default these files should be
13            placed in the same directory as the executable.
14
15Resources   Contains resources required by libcef.so. By default these files
16            should be placed in the same directory as libcef.so.
17
18
19USAGE
20-----
21
22Building using CMake:
23  CMake can be used to generate project files in many different formats. See
24  usage instructions at the top of the CMakeLists.txt file.
25
26Please visit the CEF Website for additional usage information.
27
28https://bitbucket.org/chromiumembedded/cef/
29

README.redistrib.txt

1REDISTRIBUTION
2--------------
3
4This binary distribution contains the below components.
5
6Required components:
7
8The following components are required. CEF will not function without them.
9
10* CEF core library.
11  * libcef.so
12
13* Unicode support data.
14  * icudtl.dat
15
16* V8 snapshot data.
17  * snapshot_blob.bin
18  * v8_context_snapshot.bin
19
20Optional components:
21
22The following components are optional. If they are missing CEF will continue to
23run but any related functionality may become broken or disabled.
24
25* Localized resources.
26  Locale file loading can be disabled completely using
27  CefSettings.pack_loading_disabled. The locales directory path can be
28  customized using CefSettings.locales_dir_path.
29
30  * locales/
31    Directory containing localized resources used by CEF, Chromium and Blink. A
32    .pak file is loaded from this directory based on the value of environment
33    variables which are read with the following precedence order: LANGUAGE,
34    LC_ALL, LC_MESSAGES and LANG. Only configured locales need to be
35    distributed. If no locale is configured the default locale of "en-US" will
36    be used. Without these files arbitrary Web components may display
37    incorrectly.
38
39* Other resources.
40  Pack file loading can be disabled completely using
41  CefSettings.pack_loading_disabled. The resources directory path can be
42  customized using CefSettings.resources_dir_path.
43
44  * chrome_100_percent.pak
45  * chrome_200_percent.pak
46  * resources.pak
47    These files contain non-localized resources used by CEF, Chromium and Blink.
48    Without these files arbitrary Web components may display incorrectly.
49
50* ANGLE support.
51  * libEGL.so
52  * libGLESv2.so
53  Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL.
54  Without these files the aforementioned capabilities may fail.
55
56* SwANGLE support.
57  * libvk_swiftshader.so
58  * libvulkan.so.1
59  * vk_swiftshader_icd.json
60  Support for software rendering of HTML5 content like 2D canvas, 3D CSS and
61  WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without
62  these files the aforementioned capabilities may fail when GPU acceleration is
63  disabled or unavailable.
64
65* SwiftShader support
66  * swiftshader/libEGL.so
67  * swiftshader/libGLESv2.so
68  Deprecated support for software rendering using SwiftShader's GL libraries.
69  Used as an alternative to SwANGLE when the `--use-gl=swiftshader-webgl`
70  command-line flag is specified.
71

README.standard.txt

1CONTENTS
2--------
3
4cmake       Contains CMake configuration files shared by all targets.
5
6Debug       Contains libcef.so and other components required to run the debug
7            version of CEF-based applications. By default these files should be
8            placed in the same directory as libcef.so and will be copied there
9            as part of the build process.
10
11include     Contains all required CEF header files.
12
13libcef_dll  Contains the source code for the libcef_dll_wrapper static library
14            that all applications using the CEF C++ API must link against.
15
16Release     Contains libcef.so and other components required to run the release
17            version of CEF-based applications. By default these files should be
18            placed in the same directory as libcef.so and will be copied there
19            as part of the build process.
20
21Resources   Contains resources required by libcef.so. By default these files
22            should be placed in the same directory as libcef.so and will be
23            copied there as part of the build process.
24
25tests/      Directory of tests that demonstrate CEF usage.
26
27  cefclient Contains the cefclient sample application configured to build
28            using the files in this distribution. This application demonstrates
29            a wide range of CEF functionalities.
30
31  cefsimple Contains the cefsimple sample application configured to build
32            using the files in this distribution. This application demonstrates
33            the minimal functionality required to create a browser window.
34
35  ceftests  Contains unit tests that exercise the CEF APIs.
36
37  gtest     Contains the Google C++ Testing Framework used by the ceftests
38            target.
39
40  shared    Contains source code shared by the cefclient and ceftests targets.
41
42
43USAGE
44-----
45
46Building using CMake:
47  CMake can be used to generate project files in many different formats. See
48  usage instructions at the top of the CMakeLists.txt file.
49
50Please visit the CEF Website for additional usage information.
51
52https://bitbucket.org/chromiumembedded/cef/
53