Title: [222296] trunk
Revision
222296
Author
mcatanz...@igalia.com
Date
2017-09-20 16:05:24 -0700 (Wed, 20 Sep 2017)

Log Message

REGRESSION(r222194) [WPE] Library and executable output names broken
https://bugs.webkit.org/show_bug.cgi?id=177273

Reviewed by Carlos Alberto Lopez Perez.

.:

Move the WebKit2 output name variables from here to Source/WebKit.

* Source/cmake/OptionsWPE.cmake:

Source/WebKit:

Move the WebKit2 output name variables to here from Source/cmake, since this is a better
place and where they are set on all other ports. Update them for the changes in r222194.

* PlatformWPE.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (222295 => 222296)


--- trunk/ChangeLog	2017-09-20 22:41:01 UTC (rev 222295)
+++ trunk/ChangeLog	2017-09-20 23:05:24 UTC (rev 222296)
@@ -1,3 +1,14 @@
+2017-09-20  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        REGRESSION(r222194) [WPE] Library and executable output names broken
+        https://bugs.webkit.org/show_bug.cgi?id=177273
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        Move the WebKit2 output name variables from here to Source/WebKit.
+
+        * Source/cmake/OptionsWPE.cmake:
+
 2017-09-20  Alberto Garcia  <be...@igalia.com>
 
         Fix HPPA and Alpha builds

Modified: trunk/Source/WebKit/ChangeLog (222295 => 222296)


--- trunk/Source/WebKit/ChangeLog	2017-09-20 22:41:01 UTC (rev 222295)
+++ trunk/Source/WebKit/ChangeLog	2017-09-20 23:05:24 UTC (rev 222296)
@@ -1,3 +1,15 @@
+2017-09-20  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        REGRESSION(r222194) [WPE] Library and executable output names broken
+        https://bugs.webkit.org/show_bug.cgi?id=177273
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        Move the WebKit2 output name variables to here from Source/cmake, since this is a better
+        place and where they are set on all other ports. Update them for the changes in r222194.
+
+        * PlatformWPE.cmake:
+
 2017-09-20  Jonathan Bedard  <jbed...@apple.com>
 
         Removed nullable from UIDragItem property

Modified: trunk/Source/WebKit/PlatformWPE.cmake (222295 => 222296)


--- trunk/Source/WebKit/PlatformWPE.cmake	2017-09-20 22:41:01 UTC (rev 222295)
+++ trunk/Source/WebKit/PlatformWPE.cmake	2017-09-20 23:05:24 UTC (rev 222296)
@@ -1,3 +1,8 @@
+set(WebKit_OUTPUT_NAME WPEWebKit)
+set(WebKit_WebProcess_OUTPUT_NAME WPEWebProcess)
+set(WebKit_NetworkProcess_OUTPUT_NAME WPENetworkProcess)
+set(WebKit_StorageProcess_OUTPUT_NAME WPEStorageProcess)
+
 file(MAKE_DIRECTORY ${DERIVED_SOURCES_WPE_API_DIR})
 file(MAKE_DIRECTORY ${FORWARDING_HEADERS_WPE_DIR})
 file(MAKE_DIRECTORY ${FORWARDING_HEADERS_WPE_EXTENSION_DIR})

Modified: trunk/Source/cmake/OptionsWPE.cmake (222295 => 222296)


--- trunk/Source/cmake/OptionsWPE.cmake	2017-09-20 22:41:01 UTC (rev 222295)
+++ trunk/Source/cmake/OptionsWPE.cmake	2017-09-20 23:05:24 UTC (rev 222296)
@@ -54,10 +54,6 @@
 
 set(_javascript_Core_LIBRARY_TYPE STATIC)
 set(WebCore_LIBRARY_TYPE STATIC)
-set(WebKit2_OUTPUT_NAME WPEWebKit)
-set(WebKit2_WebProcess_OUTPUT_NAME WPEWebProcess)
-set(WebKit2_NetworkProcess_OUTPUT_NAME WPENetworkProcess)
-set(WebKit2_StorageProcess_OUTPUT_NAME WPEStorageProcess)
 
 find_package(ICU REQUIRED)
 find_package(Threads REQUIRED)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to