Title: [213724] trunk/Source
Revision
213724
Author
achristen...@apple.com
Date
2017-03-10 11:45:58 -0800 (Fri, 10 Mar 2017)

Log Message

Fix CMake build.

Source/_javascript_Core:

* CMakeLists.txt:
Make more forwarding headers so we can find WasmFaultSignalHandler.h from WebProcess.cpp.

Source/WebKit/mac:

* WebView/WebNotification.h:
Don't assume we have already included something that includes NSObject.h.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (213723 => 213724)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2017-03-10 19:36:37 UTC (rev 213723)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2017-03-10 19:45:58 UTC (rev 213724)
@@ -1247,6 +1247,7 @@
     profiler
     replay
     runtime
+    wasm
     yarr
 
     collector/handles

Modified: trunk/Source/_javascript_Core/ChangeLog (213723 => 213724)


--- trunk/Source/_javascript_Core/ChangeLog	2017-03-10 19:36:37 UTC (rev 213723)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-03-10 19:45:58 UTC (rev 213724)
@@ -1,3 +1,10 @@
+2017-03-10  Alex Christensen  <achristen...@webkit.org>
+
+        Fix CMake build.
+
+        * CMakeLists.txt:
+        Make more forwarding headers so we can find WasmFaultSignalHandler.h from WebProcess.cpp.
+
 2017-03-10  Mark Lam  <mark....@apple.com>
 
         [Re-landing] Implement a StackTrace utility object that can capture stack traces for debugging.

Modified: trunk/Source/WebKit/mac/ChangeLog (213723 => 213724)


--- trunk/Source/WebKit/mac/ChangeLog	2017-03-10 19:36:37 UTC (rev 213723)
+++ trunk/Source/WebKit/mac/ChangeLog	2017-03-10 19:45:58 UTC (rev 213724)
@@ -1,3 +1,10 @@
+2017-03-10  Alex Christensen  <achristen...@webkit.org>
+
+        Fix CMake build.
+
+        * WebView/WebNotification.h:
+        Don't assume we have already included something that includes NSObject.h.
+
 2017-03-09  Daniel Bates  <daba...@apple.com>
 
         Guard Credential Management implementation behind a runtime enabled feature flag

Modified: trunk/Source/WebKit/mac/WebView/WebNotification.h (213723 => 213724)


--- trunk/Source/WebKit/mac/WebView/WebNotification.h	2017-03-10 19:36:37 UTC (rev 213723)
+++ trunk/Source/WebKit/mac/WebView/WebNotification.h	2017-03-10 19:45:58 UTC (rev 213724)
@@ -26,6 +26,8 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#import <Foundation/NSObject.h>
+
 @class WebNotificationPrivate;
 @class WebSecurityOrigin;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to