Delete flash player from solution file
This commit is contained in:
parent
23b58f5257
commit
b6043fc1e1
153 changed files with 554 additions and 2 deletions
|
@ -30,8 +30,10 @@ Global
|
|||
{A82CD8AB-AAAE-4451-BD32-F1610C9A92CB}.Release|x64.Build.0 = Release|x64
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|Default.ActiveCfg = Debug
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|x64.ActiveCfg = Debug
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Debug
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Debug
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Release
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.Build.0 = Release
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Release
|
||||
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.Build.0 = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
BIN
packages/cef.redist.x64.120.2.7/.signature.p7s
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/.signature.p7s
vendored
Normal file
Binary file not shown.
29
packages/cef.redist.x64.120.2.7/CEF/LICENSE.txt
vendored
Normal file
29
packages/cef.redist.x64.120.2.7/CEF/LICENSE.txt
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
|
||||
// 2006-2009 Google Inc. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the name Chromium Embedded
|
||||
// Framework nor the names of its contributors may be used to endorse
|
||||
// or promote products derived from this software without specific prior
|
||||
// written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
154
packages/cef.redist.x64.120.2.7/CEF/README.txt
vendored
Normal file
154
packages/cef.redist.x64.120.2.7/CEF/README.txt
vendored
Normal file
|
@ -0,0 +1,154 @@
|
|||
Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Date: January 18, 2024
|
||||
|
||||
CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234
|
||||
CEF URL: https://bitbucket.org/chromiumembedded/cef.git
|
||||
@4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553
|
||||
|
||||
Chromium Version: 120.0.6099.234
|
||||
Chromium URL: https://chromium.googlesource.com/chromium/src.git
|
||||
@ad76543128c308a9afdfc1ecf5b3f714886446c1
|
||||
|
||||
This distribution contains all components necessary to build and distribute an
|
||||
application using CEF on the Windows platform. Please see the LICENSING
|
||||
section of this document for licensing terms and conditions.
|
||||
|
||||
|
||||
CONTENTS
|
||||
--------
|
||||
|
||||
cmake Contains CMake configuration files shared by all targets.
|
||||
|
||||
Debug Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the debug version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
include Contains all required CEF header files.
|
||||
|
||||
libcef_dll Contains the source code for the libcef_dll_wrapper static library
|
||||
that all applications using the CEF C++ API must link against.
|
||||
|
||||
Release Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the release version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
Resources Contains resources required by libcef.dll. By default these files
|
||||
should be placed in the same directory as libcef.dll and will be
|
||||
copied there as part of the build process.
|
||||
|
||||
tests/ Directory of tests that demonstrate CEF usage.
|
||||
|
||||
cefclient Contains the cefclient sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
a wide range of CEF functionalities.
|
||||
|
||||
cefsimple Contains the cefsimple sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
the minimal functionality required to create a browser window.
|
||||
|
||||
ceftests Contains unit tests that exercise the CEF APIs.
|
||||
|
||||
gtest Contains the Google C++ Testing Framework used by the ceftests
|
||||
target.
|
||||
|
||||
shared Contains source code shared by the cefclient and ceftests targets.
|
||||
|
||||
|
||||
USAGE
|
||||
-----
|
||||
|
||||
Building using CMake:
|
||||
CMake can be used to generate project files in many different formats. See
|
||||
usage instructions at the top of the CMakeLists.txt file.
|
||||
|
||||
Please visit the CEF Website for additional usage information.
|
||||
|
||||
https://bitbucket.org/chromiumembedded/cef/
|
||||
|
||||
|
||||
REDISTRIBUTION
|
||||
--------------
|
||||
|
||||
This binary distribution contains the below components.
|
||||
|
||||
Required components:
|
||||
|
||||
The following components are required. CEF will not function without them.
|
||||
|
||||
* CEF core library.
|
||||
* libcef.dll
|
||||
|
||||
* Crash reporting library.
|
||||
* chrome_elf.dll
|
||||
|
||||
* Unicode support data.
|
||||
* icudtl.dat
|
||||
|
||||
* V8 snapshot data.
|
||||
* snapshot_blob.bin
|
||||
* v8_context_snapshot.bin
|
||||
|
||||
Optional components:
|
||||
|
||||
The following components are optional. If they are missing CEF will continue to
|
||||
run but any related functionality may become broken or disabled.
|
||||
|
||||
* Localized resources.
|
||||
Locale file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The locales directory path can be
|
||||
customized using CefSettings.locales_dir_path.
|
||||
|
||||
* locales/
|
||||
Directory containing localized resources used by CEF, Chromium and Blink. A
|
||||
.pak file is loaded from this directory based on the CefSettings.locale
|
||||
value. Only configured locales need to be distributed. If no locale is
|
||||
configured the default locale of "en-US" will be used. Without these files
|
||||
arbitrary Web components may display incorrectly.
|
||||
|
||||
* Other resources.
|
||||
Pack file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The resources directory path can be
|
||||
customized using CefSettings.resources_dir_path.
|
||||
|
||||
* chrome_100_percent.pak
|
||||
* chrome_200_percent.pak
|
||||
* resources.pak
|
||||
These files contain non-localized resources used by CEF, Chromium and Blink.
|
||||
Without these files arbitrary Web components may display incorrectly.
|
||||
|
||||
* Direct3D support.
|
||||
* d3dcompiler_47.dll
|
||||
Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS
|
||||
and WebGL. Without this file the aforementioned capabilities may fail when GPU
|
||||
acceleration is enabled (default in most cases). Use of this bundled version
|
||||
is recommended instead of relying on the possibly old and untested system
|
||||
installed version.
|
||||
|
||||
* ANGLE support.
|
||||
* libEGL.dll
|
||||
* libGLESv2.dll
|
||||
Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL.
|
||||
Without these files the aforementioned capabilities may fail.
|
||||
|
||||
* SwANGLE support.
|
||||
* vk_swiftshader.dll
|
||||
* vk_swiftshader_icd.json
|
||||
* vulkan-1.dll
|
||||
Support for software rendering of HTML5 content like 2D canvas, 3D CSS and
|
||||
WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without
|
||||
these files the aforementioned capabilities may fail when GPU acceleration is
|
||||
disabled or unavailable.
|
||||
|
||||
|
||||
LICENSING
|
||||
---------
|
||||
|
||||
The CEF project is BSD licensed. Please read the LICENSE.txt file included with
|
||||
this binary distribution for licensing terms and conditions. Other software
|
||||
included in this distribution is provided under other licenses. Please visit
|
||||
"about:credits" in a CEF-based application for complete Chromium and third-party
|
||||
licensing information.
|
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_100_percent.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_100_percent.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_200_percent.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_200_percent.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_elf.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/chrome_elf.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/d3dcompiler_47.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/d3dcompiler_47.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/icudtl.dat
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/icudtl.dat
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/libEGL.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/libEGL.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/libGLESv2.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/libGLESv2.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/libcef.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/libcef.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/af.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/af.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/am.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/am.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ar.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ar.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/bg.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/bg.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/bn.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/bn.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ca.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ca.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/cs.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/cs.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/da.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/da.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/de.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/de.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/el.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/el.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/en-GB.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/en-GB.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/en-US.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/en-US.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/es-419.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/es-419.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/es.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/es.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/et.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/et.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fa.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fa.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fi.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fi.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fil.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fil.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fr.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/fr.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/gu.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/gu.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/he.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/he.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hi.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hi.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hr.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hr.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hu.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/hu.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/id.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/id.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/it.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/it.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ja.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ja.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/kn.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/kn.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ko.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ko.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/lt.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/lt.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/lv.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/lv.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ml.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ml.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/mr.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/mr.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ms.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ms.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/nb.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/nb.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/nl.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/nl.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pl.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pl.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pt-BR.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pt-BR.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pt-PT.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/pt-PT.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ro.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ro.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ru.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ru.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sk.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sk.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sl.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sl.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sr.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sr.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sv.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sv.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sw.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/sw.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ta.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ta.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/te.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/te.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/th.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/th.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/tr.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/tr.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/uk.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/uk.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ur.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/ur.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/vi.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/vi.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/zh-CN.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/zh-CN.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/zh-TW.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/locales/zh-TW.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/resources.pak
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/resources.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/snapshot_blob.bin
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/snapshot_blob.bin
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/v8_context_snapshot.bin
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/v8_context_snapshot.bin
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader.dll
vendored
Normal file
Binary file not shown.
1
packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader_icd.json
vendored
Normal file
1
packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader_icd.json
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"file_format_version": "1.0.0", "ICD": {"library_path": ".\\vk_swiftshader.dll", "api_version": "1.0.5"}}
|
BIN
packages/cef.redist.x64.120.2.7/CEF/vulkan-1.dll
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/CEF/vulkan-1.dll
vendored
Normal file
Binary file not shown.
29
packages/cef.redist.x64.120.2.7/LICENSE.txt
vendored
Normal file
29
packages/cef.redist.x64.120.2.7/LICENSE.txt
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
|
||||
// 2006-2009 Google Inc. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the name Chromium Embedded
|
||||
// Framework nor the names of its contributors may be used to endorse
|
||||
// or promote products derived from this software without specific prior
|
||||
// written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
31
packages/cef.redist.x64.120.2.7/build/cef.redist.x64.props
vendored
Normal file
31
packages/cef.redist.x64.120.2.7/build/cef.redist.x64.props
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!--
|
||||
Files are no longer copied as part of this targets file.
|
||||
For projects other than CefSharp define a target to copy the files.
|
||||
Checkout the CefSharp.Common.targets file for an example
|
||||
-->
|
||||
|
||||
<!--
|
||||
Using wildcard matching as per https://stackoverflow.com/a/17252671
|
||||
-->
|
||||
<ItemGroup>
|
||||
<CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CefRedist64CopyResources">
|
||||
<PropertyGroup>
|
||||
<CefRedist64TargetDir Condition="'$(CefRedist64TargetDir)' == ''">$(TargetDir)</CefRedist64TargetDir>
|
||||
</PropertyGroup>
|
||||
<!--
|
||||
Cannot gurantee access to the main CefRedist64 ItemGroup here
|
||||
so we create a duplicate inside our target.
|
||||
https://github.com/dotnet/project-system/issues/4158
|
||||
-->
|
||||
<ItemGroup>
|
||||
<_CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
<Message Importance="high" Text="Copying CEF Redist x64 files from $(MSBuildThisFileDirectory)..\CEF to $(CefRedist64TargetDir)" />
|
||||
<Copy SourceFiles="@(_CefRedist64)" DestinationFiles="@(_CefRedist64->'$(CefRedist64TargetDir)\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
|
||||
</Target>
|
||||
</Project>
|
31
packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props
vendored
Normal file
31
packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!--
|
||||
Files are no longer copied as part of this targets file.
|
||||
For projects other than CefSharp define a target to copy the files.
|
||||
Checkout the CefSharp.Common.targets file for an example
|
||||
-->
|
||||
|
||||
<!--
|
||||
Using wildcard matching as per https://stackoverflow.com/a/17252671
|
||||
-->
|
||||
<ItemGroup>
|
||||
<CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CefRedist64CopyResources">
|
||||
<PropertyGroup>
|
||||
<CefRedist64TargetDir Condition="'$(CefRedist64TargetDir)' == ''">$(TargetDir)</CefRedist64TargetDir>
|
||||
</PropertyGroup>
|
||||
<!--
|
||||
Cannot gurantee access to the main CefRedist64 ItemGroup here
|
||||
so we create a duplicate inside our target.
|
||||
https://github.com/dotnet/project-system/issues/4158
|
||||
-->
|
||||
<ItemGroup>
|
||||
<_CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
<Message Importance="high" Text="Copying CEF Redist x64 files from $(MSBuildThisFileDirectory)..\CEF to $(CefRedist64TargetDir)" />
|
||||
<Copy SourceFiles="@(_CefRedist64)" DestinationFiles="@(_CefRedist64->'$(CefRedist64TargetDir)\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
|
||||
</Target>
|
||||
</Project>
|
BIN
packages/cef.redist.x64.120.2.7/cef.redist.x64.120.2.7.nupkg
vendored
Normal file
BIN
packages/cef.redist.x64.120.2.7/cef.redist.x64.120.2.7.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/.signature.p7s
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/.signature.p7s
vendored
Normal file
Binary file not shown.
29
packages/cef.redist.x86.120.2.7/CEF/LICENSE.txt
vendored
Normal file
29
packages/cef.redist.x86.120.2.7/CEF/LICENSE.txt
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
|
||||
// 2006-2009 Google Inc. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the name Chromium Embedded
|
||||
// Framework nor the names of its contributors may be used to endorse
|
||||
// or promote products derived from this software without specific prior
|
||||
// written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
154
packages/cef.redist.x86.120.2.7/CEF/README.txt
vendored
Normal file
154
packages/cef.redist.x86.120.2.7/CEF/README.txt
vendored
Normal file
|
@ -0,0 +1,154 @@
|
|||
Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Date: January 18, 2024
|
||||
|
||||
CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234
|
||||
CEF URL: https://bitbucket.org/chromiumembedded/cef.git
|
||||
@4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553
|
||||
|
||||
Chromium Version: 120.0.6099.234
|
||||
Chromium URL: https://chromium.googlesource.com/chromium/src.git
|
||||
@ad76543128c308a9afdfc1ecf5b3f714886446c1
|
||||
|
||||
This distribution contains all components necessary to build and distribute an
|
||||
application using CEF on the Windows platform. Please see the LICENSING
|
||||
section of this document for licensing terms and conditions.
|
||||
|
||||
|
||||
CONTENTS
|
||||
--------
|
||||
|
||||
cmake Contains CMake configuration files shared by all targets.
|
||||
|
||||
Debug Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the debug version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
include Contains all required CEF header files.
|
||||
|
||||
libcef_dll Contains the source code for the libcef_dll_wrapper static library
|
||||
that all applications using the CEF C++ API must link against.
|
||||
|
||||
Release Contains libcef.dll, libcef.lib and other components required to
|
||||
build and run the release version of CEF-based applications. By
|
||||
default these files should be placed in the same directory as the
|
||||
executable and will be copied there as part of the build process.
|
||||
|
||||
Resources Contains resources required by libcef.dll. By default these files
|
||||
should be placed in the same directory as libcef.dll and will be
|
||||
copied there as part of the build process.
|
||||
|
||||
tests/ Directory of tests that demonstrate CEF usage.
|
||||
|
||||
cefclient Contains the cefclient sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
a wide range of CEF functionalities.
|
||||
|
||||
cefsimple Contains the cefsimple sample application configured to build
|
||||
using the files in this distribution. This application demonstrates
|
||||
the minimal functionality required to create a browser window.
|
||||
|
||||
ceftests Contains unit tests that exercise the CEF APIs.
|
||||
|
||||
gtest Contains the Google C++ Testing Framework used by the ceftests
|
||||
target.
|
||||
|
||||
shared Contains source code shared by the cefclient and ceftests targets.
|
||||
|
||||
|
||||
USAGE
|
||||
-----
|
||||
|
||||
Building using CMake:
|
||||
CMake can be used to generate project files in many different formats. See
|
||||
usage instructions at the top of the CMakeLists.txt file.
|
||||
|
||||
Please visit the CEF Website for additional usage information.
|
||||
|
||||
https://bitbucket.org/chromiumembedded/cef/
|
||||
|
||||
|
||||
REDISTRIBUTION
|
||||
--------------
|
||||
|
||||
This binary distribution contains the below components.
|
||||
|
||||
Required components:
|
||||
|
||||
The following components are required. CEF will not function without them.
|
||||
|
||||
* CEF core library.
|
||||
* libcef.dll
|
||||
|
||||
* Crash reporting library.
|
||||
* chrome_elf.dll
|
||||
|
||||
* Unicode support data.
|
||||
* icudtl.dat
|
||||
|
||||
* V8 snapshot data.
|
||||
* snapshot_blob.bin
|
||||
* v8_context_snapshot.bin
|
||||
|
||||
Optional components:
|
||||
|
||||
The following components are optional. If they are missing CEF will continue to
|
||||
run but any related functionality may become broken or disabled.
|
||||
|
||||
* Localized resources.
|
||||
Locale file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The locales directory path can be
|
||||
customized using CefSettings.locales_dir_path.
|
||||
|
||||
* locales/
|
||||
Directory containing localized resources used by CEF, Chromium and Blink. A
|
||||
.pak file is loaded from this directory based on the CefSettings.locale
|
||||
value. Only configured locales need to be distributed. If no locale is
|
||||
configured the default locale of "en-US" will be used. Without these files
|
||||
arbitrary Web components may display incorrectly.
|
||||
|
||||
* Other resources.
|
||||
Pack file loading can be disabled completely using
|
||||
CefSettings.pack_loading_disabled. The resources directory path can be
|
||||
customized using CefSettings.resources_dir_path.
|
||||
|
||||
* chrome_100_percent.pak
|
||||
* chrome_200_percent.pak
|
||||
* resources.pak
|
||||
These files contain non-localized resources used by CEF, Chromium and Blink.
|
||||
Without these files arbitrary Web components may display incorrectly.
|
||||
|
||||
* Direct3D support.
|
||||
* d3dcompiler_47.dll
|
||||
Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS
|
||||
and WebGL. Without this file the aforementioned capabilities may fail when GPU
|
||||
acceleration is enabled (default in most cases). Use of this bundled version
|
||||
is recommended instead of relying on the possibly old and untested system
|
||||
installed version.
|
||||
|
||||
* ANGLE support.
|
||||
* libEGL.dll
|
||||
* libGLESv2.dll
|
||||
Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL.
|
||||
Without these files the aforementioned capabilities may fail.
|
||||
|
||||
* SwANGLE support.
|
||||
* vk_swiftshader.dll
|
||||
* vk_swiftshader_icd.json
|
||||
* vulkan-1.dll
|
||||
Support for software rendering of HTML5 content like 2D canvas, 3D CSS and
|
||||
WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without
|
||||
these files the aforementioned capabilities may fail when GPU acceleration is
|
||||
disabled or unavailable.
|
||||
|
||||
|
||||
LICENSING
|
||||
---------
|
||||
|
||||
The CEF project is BSD licensed. Please read the LICENSE.txt file included with
|
||||
this binary distribution for licensing terms and conditions. Other software
|
||||
included in this distribution is provided under other licenses. Please visit
|
||||
"about:credits" in a CEF-based application for complete Chromium and third-party
|
||||
licensing information.
|
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_100_percent.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_100_percent.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_200_percent.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_200_percent.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_elf.dll
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/chrome_elf.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/d3dcompiler_47.dll
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/d3dcompiler_47.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/icudtl.dat
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/icudtl.dat
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/libEGL.dll
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/libEGL.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/libGLESv2.dll
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/libGLESv2.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/libcef.dll
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/libcef.dll
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/af.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/af.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/am.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/am.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/ar.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/ar.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/bg.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/bg.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/bn.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/bn.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/ca.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/ca.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/cs.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/cs.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/da.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/da.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/de.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/de.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/el.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/el.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/en-GB.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/en-GB.pak
vendored
Normal file
Binary file not shown.
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/en-US.pak
vendored
Normal file
BIN
packages/cef.redist.x86.120.2.7/CEF/locales/en-US.pak
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue