Title: [219995] trunk/Source/WebKit
Revision
219995
Author
[email protected]
Date
2017-07-27 22:49:05 -0700 (Thu, 27 Jul 2017)

Log Message

[CMake] Re-add the StorageProcess executable target
https://bugs.webkit.org/show_bug.cgi?id=174929

Reviewed by Carlos Garcia Campos.

Re-add the StorageProcess executable target that was removed in r219960.
Back then it was still named DatabaseProcess, but the name changed in
the following patches.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/WebKit/CMakeLists.txt (219994 => 219995)


--- trunk/Source/WebKit/CMakeLists.txt	2017-07-28 05:11:19 UTC (rev 219994)
+++ trunk/Source/WebKit/CMakeLists.txt	2017-07-28 05:49:05 UTC (rev 219995)
@@ -866,6 +866,17 @@
     set_target_properties(NetworkProcess PROPERTIES OUTPUT_NAME ${WebKit2_NetworkProcess_OUTPUT_NAME})
 endif ()
 
+if (NOT "${PORT}" STREQUAL "Mac")
+    add_executable(StorageProcess ${StorageProcess_SOURCES})
+    add_webkit2_prefix_header(StorageProcess)
+    target_link_libraries(StorageProcess ${StorageProcess_LIBRARIES})
+    install(TARGETS StorageProcess DESTINATION "${LIBEXEC_INSTALL_DIR}")
+
+    if (WebKit2_StorageProcess_OUTPUT_NAME)
+        set_target_properties(StorageProcess PROPERTIES OUTPUT_NAME ${WebKit2_StorageProcess_OUTPUT_NAME})
+    endif ()
+endif ()
+
 if (ENABLE_PLUGIN_PROCESS AND NOT "${PORT}" STREQUAL "Mac")
     add_definitions(-DENABLE_PLUGIN_PROCESS=1)
     add_executable(PluginProcess ${PluginProcess_SOURCES})

Modified: trunk/Source/WebKit/ChangeLog (219994 => 219995)


--- trunk/Source/WebKit/ChangeLog	2017-07-28 05:11:19 UTC (rev 219994)
+++ trunk/Source/WebKit/ChangeLog	2017-07-28 05:49:05 UTC (rev 219995)
@@ -1,3 +1,16 @@
+2017-07-27  Zan Dobersek  <[email protected]>
+
+        [CMake] Re-add the StorageProcess executable target
+        https://bugs.webkit.org/show_bug.cgi?id=174929
+
+        Reviewed by Carlos Garcia Campos.
+
+        Re-add the StorageProcess executable target that was removed in r219960.
+        Back then it was still named DatabaseProcess, but the name changed in
+        the following patches.
+
+        * CMakeLists.txt:
+
 2017-07-27  Brady Eidson  <[email protected]>
 
         Part 2 of: Rename DatabaseProcess to StorageProcess.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to