Title: [279456] trunk/Tools
Revision
279456
Author
commit-qu...@webkit.org
Date
2021-07-01 01:45:00 -0700 (Thu, 01 Jul 2021)

Log Message

[WPE] Pack Cog modules in built-product archive
https://bugs.webkit.org/show_bug.cgi?id=227527

Patch by Philippe Normand <pnorm...@igalia.com> on 2021-07-01
Reviewed by Žan Doberšek.

* CISupport/built-product-archive: Cog now ships its platform plugins in a dedicated modules
directory, which we need to include in the zip archive.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/built-product-archive (279455 => 279456)


--- trunk/Tools/CISupport/built-product-archive	2021-07-01 08:22:48 UTC (rev 279455)
+++ trunk/Tools/CISupport/built-product-archive	2021-07-01 08:45:00 UTC (rev 279456)
@@ -246,9 +246,9 @@
         cogDirectory = os.path.join('Tools', 'cog-prefix', 'src', 'cog-build')
         absoluteCogDirectory = os.path.join(_configurationBuildDirectory, cogDirectory)
         if platform == 'wpe' and os.path.isdir(absoluteCogDirectory):
-            contents.extend([os.path.join(cogDirectory, filename) for filename in ['cog', 'cogctl']])
+            contents.extend([os.path.join(cogDirectory, filename_or_directory) for filename_or_directory in ['cog', 'cogctl', 'modules']])
             for filename in os.listdir(absoluteCogDirectory):
-                if filename.startswith('libcogcore') or filename.startswith('libcogplatform'):
+                if filename.startswith('libcogcore'):
                     contents.append(os.path.join(cogDirectory, filename))
 
         # When debug fission is enabled the directories below contain dwo files

Modified: trunk/Tools/ChangeLog (279455 => 279456)


--- trunk/Tools/ChangeLog	2021-07-01 08:22:48 UTC (rev 279455)
+++ trunk/Tools/ChangeLog	2021-07-01 08:45:00 UTC (rev 279456)
@@ -1,3 +1,13 @@
+2021-07-01  Philippe Normand  <pnorm...@igalia.com>
+
+        [WPE] Pack Cog modules in built-product archive
+        https://bugs.webkit.org/show_bug.cgi?id=227527
+
+        Reviewed by Žan Doberšek.
+
+        * CISupport/built-product-archive: Cog now ships its platform plugins in a dedicated modules
+        directory, which we need to include in the zip archive.
+
 2021-06-30  Chris Dumez  <cdu...@apple.com>
 
         Regression(r278737): WebContent crash when calling [WKWebView loadHTMLString:] with an invalid URL
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to