Title: [292253] trunk/Source/WebCore
- Revision
- 292253
- Author
- [email protected]
- Date
- 2022-04-01 19:14:07 -0700 (Fri, 01 Apr 2022)
Log Message
Fix the WebGPU-less build
https://bugs.webkit.org/show_bug.cgi?id=238692
Reviewed by Myles Maxfield.
* Configurations/WebCore.xcconfig:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (292252 => 292253)
--- trunk/Source/WebCore/ChangeLog 2022-04-02 02:09:56 UTC (rev 292252)
+++ trunk/Source/WebCore/ChangeLog 2022-04-02 02:14:07 UTC (rev 292253)
@@ -1,3 +1,12 @@
+2022-04-01 Tim Horton <[email protected]>
+
+ Fix the WebGPU-less build
+ https://bugs.webkit.org/show_bug.cgi?id=238692
+
+ Reviewed by Myles Maxfield.
+
+ * Configurations/WebCore.xcconfig:
+
2022-04-01 Wenson Hsieh <[email protected]>
[iOS] [WK2] Add plumbing for extracting video frames in element fullscreen
Modified: trunk/Source/WebCore/Configurations/WebCore.xcconfig (292252 => 292253)
--- trunk/Source/WebCore/Configurations/WebCore.xcconfig 2022-04-02 02:09:56 UTC (rev 292252)
+++ trunk/Source/WebCore/Configurations/WebCore.xcconfig 2022-04-02 02:14:07 UTC (rev 292253)
@@ -102,7 +102,15 @@
WK_ANGLE_LDFLAGS = -weak-lANGLE-shared;
-WK_WEBGPU_LDFLAGS = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS = $(WK_WEBGPU_LDFLAGS_$(PLATFORM_NAME));
+WK_WEBGPU_LDFLAGS_iphoneos = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_iphonesimulator = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_watchos = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_watchsimulator = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_appletvos = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_appletvsimulator = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_maccatalyst = -weak_framework WebGPU;
+WK_WEBGPU_LDFLAGS_macosx = -weak_framework WebGPU;
WK_APPKIT_LDFLAGS = $(WK_APPKIT_LDFLAGS_$(WK_PLATFORM_NAME));
WK_APPKIT_LDFLAGS_macosx = -framework AppKit;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes