]> git.sesse.net Git - casparcg/blobdiff - dependencies64/cef/windows/README.txt
Upgrade CEF to 3.3029.1611.g44e39a8 / Chromium 58.0.3029.81.
[casparcg] / dependencies64 / cef / windows / README.txt
diff --git a/dependencies64/cef/windows/README.txt b/dependencies64/cef/windows/README.txt
new file mode 100644 (file)
index 0000000..9471d09
--- /dev/null
@@ -0,0 +1,154 @@
+Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows\r
+-------------------------------------------------------------------------------\r
+\r
+Date:             April 29, 2017\r
+\r
+CEF Version:      3.3029.1611.g44e39a8\r
+CEF URL:          https://bitbucket.org/chromiumembedded/cef.git\r
+                  @44e39a88bc94e40c7b409a13916fe31334d942c7\r
+\r
+Chromium Verison: 58.0.3029.81\r
+Chromium URL:     https://chromium.googlesource.com/chromium/src.git\r
+                  @282d60fedefa2a065674798acbf1af61c127c8b6\r
+\r
+This distribution contains all components necessary to build and distribute an\r
+application using CEF on the Windows platform. Please see the LICENSING\r
+section of this document for licensing terms and conditions.\r
+\r
+\r
+CONTENTS\r
+--------\r
+\r
+cmake       Contains CMake configuration files shared by all targets.\r
+\r
+Debug       Contains libcef.dll, libcef.lib and other components required to\r
+            build and run the debug version of CEF-based applications. By\r
+            default these files should be placed in the same directory as the\r
+            executable and will be copied there as part of the build process.\r
+\r
+include     Contains all required CEF header files.\r
+\r
+libcef_dll  Contains the source code for the libcef_dll_wrapper static library\r
+            that all applications using the CEF C++ API must link against.\r
+\r
+Release     Contains libcef.dll, libcef.lib and other components required to\r
+            build and run the release version of CEF-based applications. By\r
+            default these files should be placed in the same directory as the\r
+            executable and will be copied there as part of the build process.\r
+\r
+Resources   Contains resources required by libcef.dll. By default these files\r
+            should be placed in the same directory as libcef.dll and will be\r
+            copied there as part of the build process.\r
+\r
+tests/      Directory of tests that demonstrate CEF usage.\r
+\r
+  cefclient Contains the cefclient sample application configured to build\r
+            using the files in this distribution. This application demonstrates\r
+            a wide range of CEF functionalities.\r
+\r
+  cefsimple Contains the cefsimple sample application configured to build\r
+            using the files in this distribution. This application demonstrates\r
+            the minimal functionality required to create a browser window.\r
+\r
+  ceftests  Contains unit tests that exercise the CEF APIs.\r
+\r
+  gtest     Contains the Google C++ Testing Framework used by the ceftests\r
+            target.\r
+\r
+  shared    Contains source code shared by the cefclient and ceftests targets.\r
+\r
+\r
+USAGE\r
+-----\r
+\r
+Building using CMake:\r
+  CMake can be used to generate project files in many different formats. See\r
+  usage instructions at the top of the CMakeLists.txt file.\r
+\r
+Please visit the CEF Website for additional usage information.\r
+\r
+https://bitbucket.org/chromiumembedded/cef/\r
+\r
+\r
+REDISTRIBUTION\r
+--------------\r
+\r
+This binary distribution contains the below components.\r
+\r
+Required components:\r
+\r
+The following components are required. CEF will not function without them.\r
+\r
+* CEF core library.\r
+  * libcef.dll\r
+\r
+* Crash reporting library.\r
+  * chrome_elf.dll\r
+\r
+* Unicode support data.\r
+  * icudtl.dat\r
+\r
+* V8 snapshot data.\r
+  * natives_blob.bin\r
+  * snapshot_blob.bin\r
+\r
+Optional components:\r
+\r
+The following components are optional. If they are missing CEF will continue to\r
+run but any related functionality may become broken or disabled.\r
+\r
+* Localized resources.\r
+  Locale file loading can be disabled completely using\r
+  CefSettings.pack_loading_disabled. The locales directory path can be\r
+  customized using CefSettings.locales_dir_path. \r
\r
+  * locales/\r
+    Directory containing localized resources used by CEF, Chromium and Blink. A\r
+    .pak file is loaded from this directory based on the CefSettings.locale\r
+    value. Only configured locales need to be distributed. If no locale is\r
+    configured the default locale of "en-US" will be used. Without these files\r
+    arbitrary Web components may display incorrectly.\r
+\r
+* Other resources.\r
+  Pack file loading can be disabled completely using\r
+  CefSettings.pack_loading_disabled. The resources directory path can be\r
+  customized using CefSettings.resources_dir_path.\r
+\r
+  * cef.pak\r
+  * cef_100_percent.pak\r
+  * cef_200_percent.pak\r
+    These files contain non-localized resources used by CEF, Chromium and Blink.\r
+    Without these files arbitrary Web components may display incorrectly.\r
+\r
+  * cef_extensions.pak\r
+    This file contains non-localized resources required for extension loading.\r
+    Pass the `--disable-extensions` command-line flag to disable use of this\r
+    file. Without this file components that depend on the extension system,\r
+    such as the PDF viewer, will not function.\r
+\r
+  * devtools_resources.pak\r
+    This file contains non-localized resources required for Chrome Developer\r
+    Tools. Without this file Chrome Developer Tools will not function.\r
+\r
+* Angle and Direct3D support.\r
+  * d3dcompiler_43.dll (required for Windows XP)\r
+  * d3dcompiler_47.dll (required for Windows Vista and newer)\r
+  * libEGL.dll\r
+  * libGLESv2.dll\r
+  Without these files HTML5 accelerated content like 2D canvas, 3D CSS and WebGL\r
+  will not function.\r
+\r
+* Widevine CDM support.\r
+  * widevinecdmadapter.dll\r
+    Without this file playback of Widevine projected content will not function.\r
+    See the CefRegisterWidevineCdm() function in cef_web_plugin.h for usage.\r
+\r
+\r
+LICENSING\r
+---------\r
+\r
+The CEF project is BSD licensed. Please read the LICENSE.txt file included with\r
+this binary distribution for licensing terms and conditions. Other software\r
+included in this distribution is provided under other licenses. Please visit\r
+"about:credits" in a CEF-based application for complete Chromium and third-party\r
+licensing information.\r