Title: [286161] trunk/Source/WebCore
Revision
286161
Author
[email protected]
Date
2021-11-25 01:27:58 -0800 (Thu, 25 Nov 2021)

Log Message

Unreviewed. Fix GTK distcheck build

Remove platform specific file from cross-platform makefile.

* CMakeLists.txt: Add WebCoreTestSupport_PRIVATE_HEADERS and use it in WEBKIT_COPY_FILES.
* PlatformMac.cmake: Append testing/cocoa/WebArchiveDumpSupport.h to WebCoreTestSupport_PRIVATE_HEADERS.

Modified Paths

Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (286160 => 286161)


--- trunk/Source/WebCore/CMakeLists.txt	2021-11-25 09:17:45 UTC (rev 286160)
+++ trunk/Source/WebCore/CMakeLists.txt	2021-11-25 09:27:58 UTC (rev 286161)
@@ -1700,6 +1700,7 @@
 
 set(WebCoreTestSupport_FRAMEWORKS ${WebCore_FRAMEWORKS})
 set(WebCoreTestSupport_DEPENDENCIES WebCoreTestSupportBindings)
+set(WebCoreTestSupport_PRIVATE_HEADERS testing/js/WebCoreTestSupport.h)
 
 if (ENABLE_LEGACY_ENCRYPTED_MEDIA)
     list(APPEND WebCore_SOURCES
@@ -2424,7 +2425,7 @@
 
 WEBKIT_COPY_FILES(Copy_WebCoreTestSupportPrivateHeaders
     DESTINATION ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR}/WebCoreTestSupport
-    FILES testing/js/WebCoreTestSupport.h testing/cocoa/WebArchiveDumpSupport.h
+    FILES ${WebCoreTestSupport_PRIVATE_HEADERS}
     FLATTENED
 )
 list(APPEND WebCoreTestSupport_INTERFACE_DEPENDENCIES Copy_WebCoreTestSupportPrivateHeaders)

Modified: trunk/Source/WebCore/ChangeLog (286160 => 286161)


--- trunk/Source/WebCore/ChangeLog	2021-11-25 09:17:45 UTC (rev 286160)
+++ trunk/Source/WebCore/ChangeLog	2021-11-25 09:27:58 UTC (rev 286161)
@@ -1,3 +1,12 @@
+2021-11-25  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK distcheck build
+
+        Remove platform specific file from cross-platform makefile.
+
+        * CMakeLists.txt: Add WebCoreTestSupport_PRIVATE_HEADERS and use it in WEBKIT_COPY_FILES.
+        * PlatformMac.cmake: Append testing/cocoa/WebArchiveDumpSupport.h to WebCoreTestSupport_PRIVATE_HEADERS.
+
 2021-11-25  Kimmo Kinnunen  <[email protected]>
 
         ANGLE Metal: The memory backing IOSurfaces of former client buffer pbuffers is leaked

Modified: trunk/Source/WebCore/PlatformMac.cmake (286160 => 286161)


--- trunk/Source/WebCore/PlatformMac.cmake	2021-11-25 09:17:45 UTC (rev 286160)
+++ trunk/Source/WebCore/PlatformMac.cmake	2021-11-25 09:27:58 UTC (rev 286161)
@@ -914,6 +914,7 @@
     VERBATIM)
 
 list(APPEND WebCoreTestSupport_LIBRARIES PRIVATE WebCore)
+list(APPEND WebCoreTestSupport_PRIVATE_HEADERS testing/cocoa/WebArchiveDumpSupport.h)
 list(APPEND WebCoreTestSupport_SOURCES
     testing/Internals.mm
     testing/MockApplePaySetupFeature.cpp
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to