Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
x64/ | 12-May-2024 | - | ||||
x86/ | 12-May-2024 | - | ||||
README.minimal.txt | D | 12-May-2024 | 981 | 30 | 19 | |
README.redistrib.txt | D | 12-May-2024 | 2.7 KiB | 80 | 62 | |
README.sandbox.txt | D | 12-May-2024 | 248 | 15 | 8 | |
README.standard.txt | D | 12-May-2024 | 2.1 KiB | 53 | 35 | |
transfer_standard.cfg | D | 12-May-2024 | 995 | 26 | 24 |
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.dll, libcef.lib and other components required to 12 build and run the release version of CEF-based applications. By 13 default these files should be placed in the same directory as the 14 executable. 15 16Resources Contains resources required by libcef.dll. By default these files 17 should be placed in the same directory as libcef.dll. 18 19 20USAGE 21----- 22 23Building using CMake: 24 CMake can be used to generate project files in many different formats. See 25 usage instructions at the top of the CMakeLists.txt file. 26 27Please visit the CEF Website for additional usage information. 28 29https://bitbucket.org/chromiumembedded/cef/ 30
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.dll 12 13* Crash reporting library. 14 * chrome_elf.dll 15 16* Unicode support data. 17 * icudtl.dat 18 19* V8 snapshot data. 20 * snapshot_blob.bin 21 * v8_context_snapshot.bin 22 23Optional components: 24 25The following components are optional. If they are missing CEF will continue to 26run but any related functionality may become broken or disabled. 27 28* Localized resources. 29 Locale file loading can be disabled completely using 30 CefSettings.pack_loading_disabled. The locales directory path can be 31 customized using CefSettings.locales_dir_path. 32 33 * locales/ 34 Directory containing localized resources used by CEF, Chromium and Blink. A 35 .pak file is loaded from this directory based on the CefSettings.locale 36 value. Only configured locales need to be distributed. If no locale is 37 configured the default locale of "en-US" will be used. Without these files 38 arbitrary Web components may display incorrectly. 39 40* Other resources. 41 Pack file loading can be disabled completely using 42 CefSettings.pack_loading_disabled. The resources directory path can be 43 customized using CefSettings.resources_dir_path. 44 45 * chrome_100_percent.pak 46 * chrome_200_percent.pak 47 * resources.pak 48 These files contain non-localized resources used by CEF, Chromium and Blink. 49 Without these files arbitrary Web components may display incorrectly. 50 51* Direct3D support. 52 * d3dcompiler_47.dll 53 Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS 54 and WebGL. Without this file the aforementioned capabilities may fail when GPU 55 acceleration is enabled (default in most cases). Use of this bundled version 56 is recommended instead of relying on the possibly old and untested system 57 installed version. 58 59* ANGLE support. 60 * libEGL.dll 61 * libGLESv2.dll 62 Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL. 63 Without these files the aforementioned capabilities may fail. 64 65* SwANGLE support. 66 * vk_swiftshader.dll 67 * vk_swiftshader_icd.json 68 * vulkan-1.dll 69 Support for software rendering of HTML5 content like 2D canvas, 3D CSS and 70 WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without 71 these files the aforementioned capabilities may fail when GPU acceleration is 72 disabled or unavailable. 73 74* SwiftShader support 75 * swiftshader/libEGL.dll 76 * swiftshader/libGLESv2.dll 77 Deprecated support for software rendering using SwiftShader's GL libraries. 78 Used as an alternative to SwANGLE when the `--use-gl=swiftshader-webgl` 79 command-line flag is specified. 80
README.sandbox.txt
1CONTENTS 2-------- 3 4Debug Contains the Debug build of cef_sandbox.lib. 5 6Release Contains the Release build of cef_sandbox.lib. 7 8 9USAGE 10----- 11 12Please visit the CEF Website for usage information. 13 14https://bitbucket.org/chromiumembedded/cef/ 15
README.standard.txt
1CONTENTS 2-------- 3 4cmake Contains CMake configuration files shared by all targets. 5 6Debug Contains libcef.dll, libcef.lib and other components required to 7 build and run the debug version of CEF-based applications. By 8 default these files should be placed in the same directory as the 9 executable and will be copied there 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.dll, libcef.lib and other components required to 17 build and run the release version of CEF-based applications. By 18 default these files should be placed in the same directory as the 19 executable and will be copied there as part of the build process. 20 21Resources Contains resources required by libcef.dll. By default these files 22 should be placed in the same directory as libcef.dll 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