diff options
author | Callum Prentice <callum@lindenlab.com> | 2021-06-17 12:42:58 -0700 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2021-06-17 12:42:58 -0700 |
commit | 45135a7c58d4ef2d5d79b99337ee0ba40e5d2e93 (patch) | |
tree | 877e4cd80a443aa03d82f74c00fb741d2199292a /indra | |
parent | 56b02aee2eff313c45adbbf6f2d93493cb6cced2 (diff) |
Fix for: SL-15422 Update version of CEF used in the Viewer to 91.0.4472.101. Also includes a tweak to viewer_manifest.py to handle some CEF file changes"
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 0207256e96..7103a21efc 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -622,11 +622,9 @@ class WindowsManifest(ViewerManifest): # CEF files common to all configurations with self.prefix(src=os.path.join(pkgdir, 'resources')): - self.path("cef.pak") - self.path("cef_100_percent.pak") - self.path("cef_200_percent.pak") - self.path("cef_extensions.pak") - self.path("devtools_resources.pak") + self.path("chrome_100_percent.pak") + self.path("chrome_200_percent.pak") + self.path("resources.pak") self.path("icudtl.dat") with self.prefix(src=os.path.join(pkgdir, 'resources', 'locales'), dst='locales'): |