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

Changeset 274208 in webkit


Ignore:
Timestamp:
Mar 10, 2021, 3:56:00 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, reverting r274166.
https://bugs.webkit.org/show_bug.cgi?id=223024

Broke GTK Debug builds

Reverted changeset:

"[GTK] Reenable -fvisibility=hidden"
https://bugs.webkit.org/show_bug.cgi?id=181916
https://trac.webkit.org/changeset/274166

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r274201 r274208  
     12021-03-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, reverting r274166.
     4        https://bugs.webkit.org/show_bug.cgi?id=223024
     5
     6        Broke GTK Debug builds
     7
     8        Reverted changeset:
     9
     10        "[GTK] Reenable -fvisibility=hidden"
     11        https://bugs.webkit.org/show_bug.cgi?id=181916
     12        https://trac.webkit.org/changeset/274166
     13
    1142021-03-09  Don Olmstead  <don.olmstead@sony.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r274207 r274208  
     12021-03-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, reverting r274166.
     4        https://bugs.webkit.org/show_bug.cgi?id=223024
     5
     6        Broke GTK Debug builds
     7
     8        Reverted changeset:
     9
     10        "[GTK] Reenable -fvisibility=hidden"
     11        https://bugs.webkit.org/show_bug.cgi?id=181916
     12        https://trac.webkit.org/changeset/274166
     13
    1142021-03-10  Youenn Fablet  <youenn@apple.com>
    215
  • trunk/Source/WebCore/PlatformGTK.cmake

    r274166 r274208  
    88
    99set(WebCore_OUTPUT_NAME WebCoreGTK)
     10
     11# FIXME: https://bugs.webkit.org/show_bug.cgi?id=181916
     12# Remove these lines when turning on hidden visibility
     13list(APPEND WebCore_PRIVATE_LIBRARIES WebKit::WTF)
     14if (NOT USE_SYSTEM_MALLOC)
     15    list(APPEND WebCore_PRIVATE_LIBRARIES WebKit::bmalloc)
     16endif ()
    1017
    1118list(APPEND WebCore_UNIFIED_SOURCE_LIST_FILES
  • trunk/Source/WebCore/dom/EventTarget.cpp

    r274166 r274208  
    6767}
    6868
    69 EventTarget::~EventTarget() = default;
    70 
    7169bool EventTarget::isNode() const
    7270{
  • trunk/Source/WebCore/dom/EventTarget.h

    r274166 r274208  
    104104
    105105protected:
    106     WEBCORE_EXPORT virtual ~EventTarget();
     106    virtual ~EventTarget() = default;
    107107   
    108108    virtual EventTargetData* eventTargetData() = 0;
  • trunk/Source/cmake/OptionsGTK.cmake

    r274201 r274208  
    1818
    1919CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(JAVASCRIPTCORE 37 0 19)
    20 
    21 set(CMAKE_C_VISIBILITY_PRESET hidden)
    22 set(CMAKE_CXX_VISIBILITY_PRESET hidden)
    23 set(bmalloc_LIBRARY_TYPE OBJECT)
    24 set(WTF_LIBRARY_TYPE OBJECT)
    2520
    2621# These are shared variables, but we special case their definition so that we can use the
  • trunk/Tools/ChangeLog

    r274201 r274208  
     12021-03-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, reverting r274166.
     4        https://bugs.webkit.org/show_bug.cgi?id=223024
     5
     6        Broke GTK Debug builds
     7
     8        Reverted changeset:
     9
     10        "[GTK] Reenable -fvisibility=hidden"
     11        https://bugs.webkit.org/show_bug.cgi?id=181916
     12        https://trac.webkit.org/changeset/274166
     13
    1142021-03-09  Don Olmstead  <don.olmstead@sony.com>
    215
  • trunk/Tools/TestWebKitAPI/PlatformGTK.cmake

    r274201 r274208  
    2828    GTK::GTK
    2929)
     30
     31# FIXME: Remove when turning on hidden visibility https://bugs.webkit.org/show_bug.cgi?id=181916
     32list(APPEND TestJavaScriptCore_LIBRARIES WTF)
    3033
    3134# TestWebCore
  • trunk/Tools/TestWebKitAPI/glib/TestExpectations.json

    r274166 r274208  
    295295            "/jsc/vm": {
    296296                "expected": {"all": {"slow": true}}
    297             },
    298             "/jsc/weak-value": {
    299                 "expected": {"all": {"status": ["FAIL", "PASS"], "bug": "webkit.org/b/222972"}}
    300297            }
    301298        }
Note: See TracChangeset for help on using the changeset viewer.