Changeset 258520 in webkit


Ignore:
Timestamp:
Mar 16, 2020 2:50:22 PM (4 years ago)
Author:
Keith Rollin
Message:

Remove support for WebKitSystemInterface
https://bugs.webkit.org/show_bug.cgi?id=208894
<rdar://problem/60297590>

Reviewed by Brent Fulgham.

This project provided support for facilities that are now handled
elsewhere and is no longer needed.

.:

  • .gitignore:
  • Source/PlatformWin.cmake:
  • Source/cmake/OptionsAppleWin.cmake:

Tools:

  • Scripts/copy-webkitlibraries-to-product-directory:

WebKitLibraries:

  • Makefile:
  • WebKitSystemInterface.h: Removed.
  • win/include/WebKitSystemInterface/WebKitSystemInterface.h: Removed.
  • win/lib32/WebKitSystemInterface.lib: Removed.
Location:
trunk
Files:
3 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/.gitignore

    r246414 r258520  
    3434/WebKitSupportLibrary.zip
    3535/WebKitLibraries/win/
    36 !/WebKitLibraries/win/include/WebKitSystemInterface/
    37 !/WebKitLibraries/win/lib32/WebKitSystemInterface.lib
    3836!/WebKitLibraries/win/tools/scripts/
    3937
  • trunk/ChangeLog

    r258498 r258520  
     12020-03-16  Keith Rollin  <krollin@apple.com>
     2
     3        Remove support for WebKitSystemInterface
     4        https://bugs.webkit.org/show_bug.cgi?id=208894
     5        <rdar://problem/60297590>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        This project provided support for facilities that are now handled
     10        elsewhere and is no longer needed.
     11
     12        * .gitignore:
     13        * Source/PlatformWin.cmake:
     14        * Source/cmake/OptionsAppleWin.cmake:
     15
    1162020-03-13  Sergio Villar Senin  <svillar@igalia.com>
    217
  • trunk/Source/PlatformWin.cmake

    r244245 r258520  
    1111)
    1212
    13 if (EXISTS ${CMAKE_SOURCE_DIR}/../Internal/WebKit/WebKitSystemInterface/win/CMakeLists.txt)
    14     add_subdirectory(${CMAKE_SOURCE_DIR}/../Internal/WebKit/WebKitSystemInterface/win ${CMAKE_CURRENT_BINARY_DIR}/WebKitSystemInterface)
    15 endif ()
    16 
    1713if (EXISTS ${CMAKE_SOURCE_DIR}/../Internal/Tools/WKTestBrowser/CMakeLists.txt)
    1814    add_subdirectory(${CMAKE_SOURCE_DIR}/../Internal/Tools/WKTestBrowser ${CMAKE_CURRENT_BINARY_DIR}/WKTestBrowser)
  • trunk/Source/cmake/OptionsAppleWin.cmake

    r256731 r258520  
    1 # The static runtime is required for AppleWin due to WebKitSystemInterface.lib
    2 # being compiled with a static runtime.
     1# The static runtime used to be required for AppleWin due to
     2# WebKitSystemInterface.lib being compiled with a static runtime. That library
     3# is no longer used, but we keep building with static runtime for backward
     4# compatibility. But if someone decides that it's OK to require existing
     5# projects to build with the runtime DLLs, that's now technically possible.
    36set(MSVC_STATIC_RUNTIME ON)
    47
  • trunk/Tools/ChangeLog

    r258518 r258520  
     12020-03-16  Keith Rollin  <krollin@apple.com>
     2
     3        Remove support for WebKitSystemInterface
     4        https://bugs.webkit.org/show_bug.cgi?id=208894
     5        <rdar://problem/60297590>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        This project provided support for facilities that are now handled
     10        elsewhere and is no longer needed.
     11
     12        * Scripts/copy-webkitlibraries-to-product-directory:
     13
    1142020-03-16  Per Arne Vollan  <pvollan@apple.com>
    215
  • trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory

    r226395 r258520  
    3333
    3434my $showHelp = 0;
    35 my $wksi = 0;
    3635my $clean = 0;
    3736my $useFullLibPaths = 0;
     
    4544Usage: $programName [options]
    4645  --help                        Show this help message
    47   --[no-]wksi                   Obsolete. Does nothing. Remove once we are sure nobody passes this option any more.
    4846  --clean                       Clean the libraries (default: $clean)
    4947  --[no-]use-full-lib-paths     Toggle using full library paths
     
    5755GetOptions(
    5856    'help' => \$showHelp,
    59     'wksi!' => \$wksi,
    6057    'clean' => \$clean,
    6158    'use-full-lib-paths!' => \$useFullLibPaths,
  • trunk/WebKitLibraries/ChangeLog

    r255189 r258520  
     12020-03-16  Keith Rollin  <krollin@apple.com>
     2
     3        Remove support for WebKitSystemInterface
     4        https://bugs.webkit.org/show_bug.cgi?id=208894
     5        <rdar://problem/60297590>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        This project provided support for facilities that are now handled
     10        elsewhere and is no longer needed.
     11
     12        * Makefile:
     13        * WebKitSystemInterface.h: Removed.
     14        * win/include/WebKitSystemInterface/WebKitSystemInterface.h: Removed.
     15        * win/lib32/WebKitSystemInterface.lib: Removed.
     16
    1172020-01-27  Chris Dumez  <cdumez@apple.com>
    218
  • trunk/WebKitLibraries/Makefile

    r254227 r258520  
    88else
    99libs:
    10         perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --wksi
     10        perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory
    1111cleanlibs:
    1212        perl $(SCRIPTS_PATH)/copy-webkitlibraries-to-product-directory --clean
Note: See TracChangeset for help on using the changeset viewer.