Title: [219382] trunk/Source/WebCore
Revision
219382
Author
[email protected]
Date
2017-07-11 21:14:42 -0700 (Tue, 11 Jul 2017)

Log Message

[Win] Build error when building WebKit.dll from WebKit.proj project file.
https://bugs.webkit.org/show_bug.cgi?id=174410

Reviewed by Brent Fulgham.

Copy required header files to forwarding headers folder.

Source/WebCore:

* PlatformWin.cmake:

Source/WebCore/PAL:

* pal/PlatformWin.cmake:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (219381 => 219382)


--- trunk/Source/WebCore/ChangeLog	2017-07-12 03:00:04 UTC (rev 219381)
+++ trunk/Source/WebCore/ChangeLog	2017-07-12 04:14:42 UTC (rev 219382)
@@ -1,3 +1,14 @@
+2017-07-11  Per Arne Vollan  <[email protected]>
+
+        [Win] Build error when building WebKit.dll from WebKit.proj project file.
+        https://bugs.webkit.org/show_bug.cgi?id=174410
+
+        Reviewed by Brent Fulgham.
+
+        Copy required header files to forwarding headers folder.
+
+        * PlatformWin.cmake:
+
 2017-07-11  Dean Jackson  <[email protected]>
 
         Remove NAVIGATOR_HWCONCURRENCY

Modified: trunk/Source/WebCore/PAL/ChangeLog (219381 => 219382)


--- trunk/Source/WebCore/PAL/ChangeLog	2017-07-12 03:00:04 UTC (rev 219381)
+++ trunk/Source/WebCore/PAL/ChangeLog	2017-07-12 04:14:42 UTC (rev 219382)
@@ -1,3 +1,14 @@
+2017-07-11  Per Arne Vollan  <[email protected]>
+
+        [Win] Build error when building WebKit.dll from WebKit.proj project file.
+        https://bugs.webkit.org/show_bug.cgi?id=174410
+
+        Reviewed by Brent Fulgham.
+
+        Copy required header files to forwarding headers folder.
+
+        * pal/PlatformWin.cmake:
+
 2017-07-11  Dean Jackson  <[email protected]>
 
         Remove NAVIGATOR_HWCONCURRENCY

Modified: trunk/Source/WebCore/PAL/pal/PlatformWin.cmake (219381 => 219382)


--- trunk/Source/WebCore/PAL/pal/PlatformWin.cmake	2017-07-12 03:00:04 UTC (rev 219381)
+++ trunk/Source/WebCore/PAL/pal/PlatformWin.cmake	2017-07-12 04:14:42 UTC (rev 219382)
@@ -7,3 +7,9 @@
 )
 
 set(PAL_OUTPUT_NAME PAL${DEBUG_SUFFIX})
+
+file(MAKE_DIRECTORY ${FORWARDING_HEADERS_DIR}/WebCore/pal)
+file(GLOB _files_PAL "${PAL_DIR}/pal/*.h")
+foreach (_file ${_files_PAL})
+    file(COPY ${_file} DESTINATION ${FORWARDING_HEADERS_DIR}/WebCore/pal/)
+endforeach ()

Modified: trunk/Source/WebCore/PlatformWin.cmake (219381 => 219382)


--- trunk/Source/WebCore/PlatformWin.cmake	2017-07-12 03:00:04 UTC (rev 219381)
+++ trunk/Source/WebCore/PlatformWin.cmake	2017-07-12 04:14:42 UTC (rev 219382)
@@ -185,6 +185,7 @@
 
     Modules/geolocation
     Modules/indexeddb
+    Modules/mediastream
     Modules/websockets
 
     Modules/indexeddb/client
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to