diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-11-06 15:28:39 +0200 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-11-06 15:28:39 +0200 |
commit | 23356ac003a264957f058c43adbaa1833cd1d73b (patch) | |
tree | d2a9679523aa39dc2010a3e4cdcb1d79f7f32910 /indra | |
parent | da2785672147ef099c0aabdb27398387b2ae3075 (diff) |
Updated viewer manifest to address CEF runtime file differences
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 541112a765..4ab910644c 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -622,7 +622,11 @@ class WindowsManifest(ViewerManifest): self.path("dullahan_host.exe") self.path("natives_blob.bin") self.path("snapshot_blob.bin") - self.path("widevinecdmadapter.dll") + self.path("v8_context_snapshot.bin") + + with self.prefix(src=os.path.join(pkgdir, 'bin', config, 'swiftshader'), dst=os.path.join('llplugin', 'swiftshader')): + self.path("libEGL.dll") + self.path("libGLESv2.dll") # MSVC DLLs needed for CEF and have to be in same directory as plugin with self.prefix(src=os.path.join(os.pardir, 'sharedlibs', 'Release'), dst="llplugin"): |