Title: [277252] trunk/Tools
Revision
277252
Author
[email protected]
Date
2021-05-09 12:11:19 -0700 (Sun, 09 May 2021)

Log Message

[Tools] Generate marshalling code without source reference
https://bugs.webkit.org/show_bug.cgi?id=225283

Patch by Khem Raj <[email protected]> on 2021-05-09
Reviewed by Carlos Alberto Lopez Perez.

* MiniBrowser/gtk/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (277251 => 277252)


--- trunk/Tools/ChangeLog	2021-05-09 19:04:22 UTC (rev 277251)
+++ trunk/Tools/ChangeLog	2021-05-09 19:11:19 UTC (rev 277252)
@@ -1,3 +1,12 @@
+2021-05-09  Khem Raj  <[email protected]>
+
+        [Tools] Generate marshalling code without source reference
+        https://bugs.webkit.org/show_bug.cgi?id=225283
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        * MiniBrowser/gtk/CMakeLists.txt:
+
 2021-05-09  Ryosuke Niwa  <[email protected]>
 
         IPC testing API should have the ability to send and receive shared memory

Modified: trunk/Tools/MiniBrowser/gtk/CMakeLists.txt (277251 => 277252)


--- trunk/Tools/MiniBrowser/gtk/CMakeLists.txt	2021-05-09 19:04:22 UTC (rev 277251)
+++ trunk/Tools/MiniBrowser/gtk/CMakeLists.txt	2021-05-09 19:11:19 UTC (rev 277252)
@@ -50,8 +50,8 @@
     OUTPUT ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.c
            ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.h
     MAIN_DEPENDENCY ${MiniBrowser_DIR}/browser-marshal.list
-    COMMAND glib-genmarshal --prefix=browser_marshal ${MiniBrowser_DIR}/browser-marshal.list --body > ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.c
-    COMMAND glib-genmarshal --prefix=browser_marshal ${MiniBrowser_DIR}/browser-marshal.list --header > ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.h
+    COMMAND glib-genmarshal --prefix=browser_marshal ${MiniBrowser_DIR}/browser-marshal.list --body --skip-source > ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.c
+    COMMAND glib-genmarshal --prefix=browser_marshal ${MiniBrowser_DIR}/browser-marshal.list --header --skip-source > ${MiniBrowser_DERIVED_SOURCES_DIR}/BrowserMarshal.h
     VERBATIM)
 
 if (USE_GTK4)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to