1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-02-02 10:25:26 +02:00

CheckDLLs and CheckResources now check the *.bin files correctly

This commit is contained in:
Salvador Diaz Fau 2017-07-18 18:35:14 +02:00
parent 5766453f91
commit 3f3f74eeb5

View File

@ -658,9 +658,7 @@ begin
else else
TempDir := ''; TempDir := '';
Result := FileExists(TempDir + 'natives_blob.bin') and Result := FileExists(TempDir + 'icudtl.dat') and
FileExists(TempDir + 'snapshot_blob.bin') and
FileExists(TempDir + 'icudtl.dat') and
FileExists(TempDir + 'cef.pak') and FileExists(TempDir + 'cef.pak') and
FileExists(TempDir + 'cef_100_percent.pak') and FileExists(TempDir + 'cef_100_percent.pak') and
FileExists(TempDir + 'cef_200_percent.pak') and FileExists(TempDir + 'cef_200_percent.pak') and
@ -698,6 +696,8 @@ begin
FileExists(TempDir + 'd3dcompiler_47.dll') and FileExists(TempDir + 'd3dcompiler_47.dll') and
FileExists(TempDir + 'libEGL.dll') and FileExists(TempDir + 'libEGL.dll') and
FileExists(TempDir + 'libGLESv2.dll') and FileExists(TempDir + 'libGLESv2.dll') and
FileExists(TempDir + 'natives_blob.bin') and
FileExists(TempDir + 'snapshot_blob.bin') and
FileExists(TempDir + 'widevinecdmadapter.dll'); FileExists(TempDir + 'widevinecdmadapter.dll');
except except
on e : exception do on e : exception do