⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286161 in webkit


Ignore:
Timestamp:
Nov 25, 2021, 1:27:58 AM (5 years ago)
Author:
Carlos Garcia Campos
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.
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r286152 r286161  
    17011701set(WebCoreTestSupport_FRAMEWORKS ${WebCore_FRAMEWORKS})
    17021702set(WebCoreTestSupport_DEPENDENCIES WebCoreTestSupportBindings)
     1703set(WebCoreTestSupport_PRIVATE_HEADERS testing/js/WebCoreTestSupport.h)
    17031704
    17041705if (ENABLE_LEGACY_ENCRYPTED_MEDIA)
     
    24252426WEBKIT_COPY_FILES(Copy_WebCoreTestSupportPrivateHeaders
    24262427    DESTINATION ${WebCore_PRIVATE_FRAMEWORK_HEADERS_DIR}/WebCoreTestSupport
    2427     FILES testing/js/WebCoreTestSupport.h testing/cocoa/WebArchiveDumpSupport.h
     2428    FILES ${WebCoreTestSupport_PRIVATE_HEADERS}
    24282429    FLATTENED
    24292430)
  • trunk/Source/WebCore/ChangeLog

    r286160 r286161  
     12021-11-25  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK distcheck build
     4
     5        Remove platform specific file from cross-platform makefile.
     6
     7        * CMakeLists.txt: Add WebCoreTestSupport_PRIVATE_HEADERS and use it in WEBKIT_COPY_FILES.
     8        * PlatformMac.cmake: Append testing/cocoa/WebArchiveDumpSupport.h to WebCoreTestSupport_PRIVATE_HEADERS.
     9
    1102021-11-25  Kimmo Kinnunen  <kkinnunen@apple.com>
    211
  • trunk/Source/WebCore/PlatformMac.cmake

    r285444 r286161  
    915915
    916916list(APPEND WebCoreTestSupport_LIBRARIES PRIVATE WebCore)
     917list(APPEND WebCoreTestSupport_PRIVATE_HEADERS testing/cocoa/WebArchiveDumpSupport.h)
    917918list(APPEND WebCoreTestSupport_SOURCES
    918919    testing/Internals.mm
Note: See TracChangeset for help on using the changeset viewer.