Skip to content
Snippets Groups Projects
Commit 78b8a0c3 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-821: Use one self.path() call for everything under "llplugin".

parent 3de5bab1
No related branches found
No related tags found
No related merge requests found
...@@ -605,103 +605,104 @@ def construct(self): ...@@ -605,103 +605,104 @@ def construct(self):
self.path("ca-bundle.crt") self.path("ca-bundle.crt")
# Media plugins - CEF # Media plugins - CEF
with self.prefix(src='../media_plugins/cef/%s' % self.args['configuration'], dst="llplugin"): with self.prefix(dst="llplugin"):
self.path("media_plugin_cef.dll") with self.prefix(src='../media_plugins/cef/%s' % self.args['configuration']):
self.path("media_plugin_cef.dll")
# Media plugins - LibVLC
with self.prefix(src='../media_plugins/libvlc/%s' % self.args['configuration'], dst="llplugin"): # Media plugins - LibVLC
self.path("media_plugin_libvlc.dll") with self.prefix(src='../media_plugins/libvlc/%s' % self.args['configuration']):
self.path("media_plugin_libvlc.dll")
# Media plugins - Example (useful for debugging - not shipped with release viewer)
if self.channel_type() != 'release': # Media plugins - Example (useful for debugging - not shipped with release viewer)
with self.prefix(src='../media_plugins/example/%s' % self.args['configuration'], dst="llplugin"): if self.channel_type() != 'release':
self.path("media_plugin_example.dll") with self.prefix(src='../media_plugins/example/%s' % self.args['configuration']):
self.path("media_plugin_example.dll")
# CEF runtime files - debug
# CEF runtime files - not debug (release, relwithdebinfo etc.) # CEF runtime files - debug
config = 'debug' if self.args['configuration'].lower() == 'debug' else 'release' # CEF runtime files - not debug (release, relwithdebinfo etc.)
with self.prefix(src=os.path.join(pkgdir, 'bin', config), dst="llplugin"): config = 'debug' if self.args['configuration'].lower() == 'debug' else 'release'
self.path("chrome_elf.dll") with self.prefix(src=os.path.join(pkgdir, 'bin', config)):
self.path("d3dcompiler_43.dll") self.path("chrome_elf.dll")
self.path("d3dcompiler_47.dll") self.path("d3dcompiler_43.dll")
self.path("libcef.dll") self.path("d3dcompiler_47.dll")
self.path("libEGL.dll") self.path("libcef.dll")
self.path("libGLESv2.dll") self.path("libEGL.dll")
self.path("dullahan_host.exe") self.path("libGLESv2.dll")
self.path("natives_blob.bin") self.path("dullahan_host.exe")
self.path("snapshot_blob.bin") self.path("natives_blob.bin")
self.path("widevinecdmadapter.dll") self.path("snapshot_blob.bin")
self.path("widevinecdmadapter.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"): # MSVC DLLs needed for CEF and have to be in same directory as plugin
self.path("msvcp120.dll") with self.prefix(src=os.path.join(os.pardir, 'sharedlibs', 'Release')):
self.path("msvcr120.dll") self.path("msvcp120.dll")
self.path("msvcr120.dll")
# CEF files common to all configurations
with self.prefix(src=os.path.join(pkgdir, 'resources'), dst="llplugin"): # CEF files common to all configurations
self.path("cef.pak") with self.prefix(src=os.path.join(pkgdir, 'resources')):
self.path("cef_100_percent.pak") self.path("cef.pak")
self.path("cef_200_percent.pak") self.path("cef_100_percent.pak")
self.path("cef_extensions.pak") self.path("cef_200_percent.pak")
self.path("devtools_resources.pak") self.path("cef_extensions.pak")
self.path("icudtl.dat") self.path("devtools_resources.pak")
self.path("icudtl.dat")
with self.prefix(src=os.path.join(pkgdir, 'resources', 'locales'), dst=os.path.join('llplugin', 'locales')):
self.path("am.pak") with self.prefix(src=os.path.join(pkgdir, 'resources', 'locales'), dst='locales'):
self.path("ar.pak") self.path("am.pak")
self.path("bg.pak") self.path("ar.pak")
self.path("bn.pak") self.path("bg.pak")
self.path("ca.pak") self.path("bn.pak")
self.path("cs.pak") self.path("ca.pak")
self.path("da.pak") self.path("cs.pak")
self.path("de.pak") self.path("da.pak")
self.path("el.pak") self.path("de.pak")
self.path("en-GB.pak") self.path("el.pak")
self.path("en-US.pak") self.path("en-GB.pak")
self.path("es-419.pak") self.path("en-US.pak")
self.path("es.pak") self.path("es-419.pak")
self.path("et.pak") self.path("es.pak")
self.path("fa.pak") self.path("et.pak")
self.path("fi.pak") self.path("fa.pak")
self.path("fil.pak") self.path("fi.pak")
self.path("fr.pak") self.path("fil.pak")
self.path("gu.pak") self.path("fr.pak")
self.path("he.pak") self.path("gu.pak")
self.path("hi.pak") self.path("he.pak")
self.path("hr.pak") self.path("hi.pak")
self.path("hu.pak") self.path("hr.pak")
self.path("id.pak") self.path("hu.pak")
self.path("it.pak") self.path("id.pak")
self.path("ja.pak") self.path("it.pak")
self.path("kn.pak") self.path("ja.pak")
self.path("ko.pak") self.path("kn.pak")
self.path("lt.pak") self.path("ko.pak")
self.path("lv.pak") self.path("lt.pak")
self.path("ml.pak") self.path("lv.pak")
self.path("mr.pak") self.path("ml.pak")
self.path("ms.pak") self.path("mr.pak")
self.path("nb.pak") self.path("ms.pak")
self.path("nl.pak") self.path("nb.pak")
self.path("pl.pak") self.path("nl.pak")
self.path("pt-BR.pak") self.path("pl.pak")
self.path("pt-PT.pak") self.path("pt-BR.pak")
self.path("ro.pak") self.path("pt-PT.pak")
self.path("ru.pak") self.path("ro.pak")
self.path("sk.pak") self.path("ru.pak")
self.path("sl.pak") self.path("sk.pak")
self.path("sr.pak") self.path("sl.pak")
self.path("sv.pak") self.path("sr.pak")
self.path("sw.pak") self.path("sv.pak")
self.path("ta.pak") self.path("sw.pak")
self.path("te.pak") self.path("ta.pak")
self.path("th.pak") self.path("te.pak")
self.path("tr.pak") self.path("th.pak")
self.path("uk.pak") self.path("tr.pak")
self.path("vi.pak") self.path("uk.pak")
self.path("zh-CN.pak") self.path("vi.pak")
self.path("zh-TW.pak") self.path("zh-CN.pak")
self.path("zh-TW.pak")
with self.prefix(src=os.path.join(pkgdir, 'bin', 'release'), dst="llplugin"):
with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')):
self.path("libvlc.dll") self.path("libvlc.dll")
self.path("libvlccore.dll") self.path("libvlccore.dll")
self.path("plugins/") self.path("plugins/")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment