Wed Feb 9 10:16:41 2022 UTC ()
webkit-gtk: Update to 2.34.5

Changes:
2.34.5
======
 - Improve VP8 codec selection when using GStreamer 1.20.
 - Fix connecting to the accessiblity bus when using the Bubblewrap sandbox.
 - Fix links being incorrectly activated when starting a pinch zoom gesture.
 - Fix touch-based scrolling.
 - Fix the build with recent toolchains based on GCC 12 and on older ones as
   included e.g. in Ubuntu 18.04.
 - Fix the build with ICU 60, version 61 is no longer required.
 - Fix several crashes and rendering issues.


(leot)
diff -r1.221 -r1.222 pkgsrc/www/webkit-gtk/Makefile
diff -r1.80 -r1.81 pkgsrc/www/webkit-gtk/PLIST
diff -r1.160 -r1.161 pkgsrc/www/webkit-gtk/distinfo

cvs diff -r1.221 -r1.222 pkgsrc/www/webkit-gtk/Makefile (switch to unified diff)

--- pkgsrc/www/webkit-gtk/Makefile 2022/01/21 11:25:58 1.221
+++ pkgsrc/www/webkit-gtk/Makefile 2022/02/09 10:16:41 1.222
@@ -1,172 +1,172 @@ @@ -1,172 +1,172 @@
1# $NetBSD: Makefile,v 1.221 2022/01/21 11:25:58 leot Exp $ 1# $NetBSD: Makefile,v 1.222 2022/02/09 10:16:41 leot Exp $
2 2
3DISTNAME= webkitgtk-2.34.4 3DISTNAME= webkitgtk-2.34.5
4PKGNAME= ${DISTNAME:S/webkitgtk/webkit-gtk/} 4PKGNAME= ${DISTNAME:S/webkitgtk/webkit-gtk/}
5CATEGORIES= www 5CATEGORIES= www
6MASTER_SITES= https://www.webkitgtk.org/releases/ 6MASTER_SITES= https://www.webkitgtk.org/releases/
7EXTRACT_SUFX= .tar.xz 7EXTRACT_SUFX= .tar.xz
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://www.webkitgtk.org/ 10HOMEPAGE= https://www.webkitgtk.org/
11COMMENT= GTK port of the WebKit browser engine 11COMMENT= GTK port of the WebKit browser engine
12LICENSE= 2-clause-bsd AND gnu-lgpl-v2 12LICENSE= 2-clause-bsd AND gnu-lgpl-v2
13 13
14# shm_open(3) and shm_unlink(3) appeared in NetBSD 7.0 14# shm_open(3) and shm_unlink(3) appeared in NetBSD 7.0
15NOT_FOR_PLATFORM= NetBSD-[1-6].*-* 15NOT_FOR_PLATFORM= NetBSD-[1-6].*-*
16 16
17TOOL_DEPENDS+= gettext-tools>=0.18:../../devel/gettext-tools 17TOOL_DEPENDS+= gettext-tools>=0.18:../../devel/gettext-tools
18TOOL_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat 18TOOL_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
19 19
20USE_CMAKE= yes 20USE_CMAKE= yes
21USE_LANGUAGES= c c++17 21USE_LANGUAGES= c c++17
22USE_TOOLS+= automake bash bison flex gmake perl pkg-config msgfmt 22USE_TOOLS+= automake bash bison flex gmake perl pkg-config msgfmt
23 23
24# Enabling -gdwarf-2 hits GNU ar limits on file size. 24# Enabling -gdwarf-2 hits GNU ar limits on file size.
25CTF_SUPPORTED= no 25CTF_SUPPORTED= no
26 26
27# GCC >= 8 is required, it no longer builds with lower versions. 27# GCC >= 8 is required, it no longer builds with lower versions.
28GCC_REQD+= 8 28GCC_REQD+= 8
29USE_GCC_RUNTIME= yes 29USE_GCC_RUNTIME= yes
30 30
31.include "../../mk/bsd.prefs.mk" 31.include "../../mk/bsd.prefs.mk"
32 32
33# This package will link against libstdc++.so from the pkgsrc GCC when the 33# This package will link against libstdc++.so from the pkgsrc GCC when the
34# base OS GCC doesn't meet the minimum requirement. Thus we do this so the 34# base OS GCC doesn't meet the minimum requirement. Thus we do this so the
35# appropriate gcc-libs package will be captured as a dependency, otherwise 35# appropriate gcc-libs package will be captured as a dependency, otherwise
36# binary packages will be broken. See also PR pkg/56604. 36# binary packages will be broken. See also PR pkg/56604.
37.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099915 37.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 099915
38USE_PKGSRC_GCC= yes 38USE_PKGSRC_GCC= yes
39USE_PKGSRC_GCC_RUNTIME= yes 39USE_PKGSRC_GCC_RUNTIME= yes
40.endif 40.endif
41 41
42# Using ld.gold subverts Pkgsrc wrappers, and this package also crashes buggy 42# Using ld.gold subverts Pkgsrc wrappers, and this package also crashes buggy
43# versions of ld.gold. 43# versions of ld.gold.
44CMAKE_ARGS+= -DUSE_LD_GOLD=OFF 44CMAKE_ARGS+= -DUSE_LD_GOLD=OFF
45 45
46PKGCONFIG_OVERRIDE+= Source/JavaScriptCore/javascriptcoregtk.pc.in 46PKGCONFIG_OVERRIDE+= Source/JavaScriptCore/javascriptcoregtk.pc.in
47PKGCONFIG_OVERRIDE+= Source/WebKit/gtk/webkit2gtk-web-extension.pc.in 47PKGCONFIG_OVERRIDE+= Source/WebKit/gtk/webkit2gtk-web-extension.pc.in
48PKGCONFIG_OVERRIDE+= Source/WebKit/gtk/webkit2gtk.pc.in 48PKGCONFIG_OVERRIDE+= Source/WebKit/gtk/webkit2gtk.pc.in
49 49
50CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release 50CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
51CMAKE_ARGS+= -DPORT=GTK 51CMAKE_ARGS+= -DPORT=GTK
52CMAKE_ARGS+= -DENABLE_X11_TARGET=ON 52CMAKE_ARGS+= -DENABLE_X11_TARGET=ON
53CMAKE_ARGS+= -DENABLE_MINIBROWSER=ON 53CMAKE_ARGS+= -DENABLE_MINIBROWSER=ON
54CMAKE_ARGS+= -DENABLE_GAMEPAD=OFF 54CMAKE_ARGS+= -DENABLE_GAMEPAD=OFF
55CMAKE_ARGS+= -DENABLE_GEOLOCATION=OFF 55CMAKE_ARGS+= -DENABLE_GEOLOCATION=OFF
56CMAKE_ARGS+= -DENABLE_BUBBLEWRAP_SANDBOX=OFF 56CMAKE_ARGS+= -DENABLE_BUBBLEWRAP_SANDBOX=OFF
57CMAKE_ARGS+= -DUSE_GSTREAMER_GL=OFF 57CMAKE_ARGS+= -DUSE_GSTREAMER_GL=OFF
58CMAKE_ARGS+= -DUSE_LIBHYPHEN=OFF 58CMAKE_ARGS+= -DUSE_LIBHYPHEN=OFF
59CMAKE_ARGS+= -DUSE_OPENJPEG=OFF 59CMAKE_ARGS+= -DUSE_OPENJPEG=OFF
60CMAKE_ARGS+= -DUSE_SOUP2=ON 60CMAKE_ARGS+= -DUSE_SOUP2=ON
61CMAKE_ARGS+= -DUSE_SYSTEMD=OFF 61CMAKE_ARGS+= -DUSE_SYSTEMD=OFF
62 62
63REPLACE_PERL+= Source/JavaScriptCore/Scripts/*.pl 63REPLACE_PERL+= Source/JavaScriptCore/Scripts/*.pl
64REPLACE_PERL+= Source/JavaScriptCore/create_hash_table 64REPLACE_PERL+= Source/JavaScriptCore/create_hash_table
65REPLACE_PERL+= Source/WebCore/Scripts/*.pl 65REPLACE_PERL+= Source/WebCore/Scripts/*.pl
66REPLACE_PERL+= Source/WebCore/bindings/scripts/*.pl 66REPLACE_PERL+= Source/WebCore/bindings/scripts/*.pl
67REPLACE_PERL+= Source/WebCore/bindings/scripts/*.pm 67REPLACE_PERL+= Source/WebCore/bindings/scripts/*.pm
68REPLACE_PERL+= Source/WebCore/css/*.pl 68REPLACE_PERL+= Source/WebCore/css/*.pl
69REPLACE_PERL+= Source/WebCore/dom/*.pl 69REPLACE_PERL+= Source/WebCore/dom/*.pl
70REPLACE_PERL+= Source/WebCore/make-hash-tools.pl 70REPLACE_PERL+= Source/WebCore/make-hash-tools.pl
71REPLACE_PERL+= Source/WebInspectorUI/Scripts/*.pl 71REPLACE_PERL+= Source/WebInspectorUI/Scripts/*.pl
72REPLACE_PERL+= Source/WebKit/Scripts/*.pl 72REPLACE_PERL+= Source/WebKit/Scripts/*.pl
73REPLACE_PERL+= Source/cmake/tools/scripts/*.pl 73REPLACE_PERL+= Source/cmake/tools/scripts/*.pl
74 74
75REPLACE_PYTHON+= Source/JavaScriptCore/Scripts/*.py 75REPLACE_PYTHON+= Source/JavaScriptCore/Scripts/*.py
76REPLACE_PYTHON+= Source/JavaScriptCore/Scripts/wkbuiltins/*.py 76REPLACE_PYTHON+= Source/JavaScriptCore/Scripts/wkbuiltins/*.py
77REPLACE_PYTHON+= Source/JavaScriptCore/inspector/scripts/*.py 77REPLACE_PYTHON+= Source/JavaScriptCore/inspector/scripts/*.py
78REPLACE_PYTHON+= Source/JavaScriptCore/inspector/scripts/codegen/*.py 78REPLACE_PYTHON+= Source/JavaScriptCore/inspector/scripts/codegen/*.py
79REPLACE_PYTHON+= Source/JavaScriptCore/wasm/*.py 79REPLACE_PYTHON+= Source/JavaScriptCore/wasm/*.py
80REPLACE_PYTHON+= Source/JavaScriptCore/yarr/*.py 80REPLACE_PYTHON+= Source/JavaScriptCore/yarr/*.py
81REPLACE_PYTHON+= Source/JavaScriptCore/yarr/create_regex_tables 81REPLACE_PYTHON+= Source/JavaScriptCore/yarr/create_regex_tables
82REPLACE_PYTHON+= Source/JavaScriptCore/yarr/generateYarrCanonicalizeUnicode 82REPLACE_PYTHON+= Source/JavaScriptCore/yarr/generateYarrCanonicalizeUnicode
83REPLACE_PYTHON+= Source/ThirdParty/ANGLE/src/compiler/translator/*.py 83REPLACE_PYTHON+= Source/ThirdParty/ANGLE/src/compiler/translator/*.py
84REPLACE_PYTHON+= Source/ThirdParty/ANGLE/src/libANGLE/*.py 84REPLACE_PYTHON+= Source/ThirdParty/ANGLE/src/libANGLE/*.py
85REPLACE_PYTHON+= Source/ThirdParty/gtest/scripts/*.py 85REPLACE_PYTHON+= Source/ThirdParty/gtest/scripts/*.py
86REPLACE_PYTHON+= Source/ThirdParty/gtest/test/*.py 86REPLACE_PYTHON+= Source/ThirdParty/gtest/test/*.py
87REPLACE_PYTHON+= Source/ThirdParty/gtest/xcode/Scripts/*.py 87REPLACE_PYTHON+= Source/ThirdParty/gtest/xcode/Scripts/*.py
88REPLACE_PYTHON+= Source/WebCore/css/*.py 88REPLACE_PYTHON+= Source/WebCore/css/*.py
89REPLACE_PYTHON+= Source/WebCore/html/parser/create-html-entity-table 89REPLACE_PYTHON+= Source/WebCore/html/parser/create-html-entity-table
90REPLACE_PYTHON+= Source/WebCore/platform/network/create-http-header-name-table 90REPLACE_PYTHON+= Source/WebCore/platform/network/create-http-header-name-table
91REPLACE_PYTHON+= Source/WebKit/Scripts/*.py 91REPLACE_PYTHON+= Source/WebKit/Scripts/*.py
92REPLACE_PYTHON+= Tools/glib/*.py 92REPLACE_PYTHON+= Tools/glib/*.py
93REPLACE_PYTHON+= Tools/gtkdoc/generate-gtkdoc 93REPLACE_PYTHON+= Tools/gtkdoc/generate-gtkdoc
94 94
95REPLACE_BASH+= Source/JavaScriptCore/postprocess-headers.sh 95REPLACE_BASH+= Source/JavaScriptCore/postprocess-headers.sh
96REPLACE_BASH+= Source/ThirdParty/ANGLE/adjust-angle-include-paths-rule 96REPLACE_BASH+= Source/ThirdParty/ANGLE/adjust-angle-include-paths-rule
97REPLACE_BASH+= Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh 97REPLACE_BASH+= Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh
98REPLACE_BASH+= Source/ThirdParty/gtest/xcode/Scripts/runtests.sh 98REPLACE_BASH+= Source/ThirdParty/gtest/xcode/Scripts/runtests.sh
99REPLACE_BASH+= Source/WebKit/Scripts/copy-webcontent-resources-to-private-headers.sh 99REPLACE_BASH+= Source/WebKit/Scripts/copy-webcontent-resources-to-private-headers.sh
100REPLACE_BASH+= Source/WebKit/Scripts/generate-https-upgrade-database.sh 100REPLACE_BASH+= Source/WebKit/Scripts/generate-https-upgrade-database.sh
101REPLACE_BASH+= Source/WebKit/Scripts/process-entitlements.sh 101REPLACE_BASH+= Source/WebKit/Scripts/process-entitlements.sh
102REPLACE_BASH+= Tools/gtk/install-dependencies 102REPLACE_BASH+= Tools/gtk/install-dependencies
103 103
104REPLACE_RUBY+= Source/JavaScriptCore/b3/air/*.rb 104REPLACE_RUBY+= Source/JavaScriptCore/b3/air/*.rb
105REPLACE_RUBY+= Source/JavaScriptCore/offlineasm/*.rb 105REPLACE_RUBY+= Source/JavaScriptCore/offlineasm/*.rb
106REPLACE_RUBY+= Source/WebCore/Scripts/*.rb 106REPLACE_RUBY+= Source/WebCore/Scripts/*.rb
107REPLACE_RUBY+= Source/WebCore/domjit/*.rb 107REPLACE_RUBY+= Source/WebCore/domjit/*.rb
108REPLACE_RUBY+= Source/WebInspectorUI/Scripts/*.rb 108REPLACE_RUBY+= Source/WebInspectorUI/Scripts/*.rb
109REPLACE_RUBY+= Source/WebKit/Scripts/*.rb 109REPLACE_RUBY+= Source/WebKit/Scripts/*.rb
110 110
111SUBST_CLASSES+= python 111SUBST_CLASSES+= python
112SUBST_FILES.python+= Source/WebInspectorUI/Scripts/copy-user-interface-resources.pl 112SUBST_FILES.python+= Source/WebInspectorUI/Scripts/copy-user-interface-resources.pl
113SUBST_SED.python+= -e 's,\(.\)python.;,\1${PYTHONBIN}\1;,' 113SUBST_SED.python+= -e 's,\(.\)python.;,\1${PYTHONBIN}\1;,'
114SUBST_STAGE.python= pre-configure 114SUBST_STAGE.python= pre-configure
115SUBST_MESSAGE.python= Fixing path to python binary. 115SUBST_MESSAGE.python= Fixing path to python binary.
116 116
117.include "../../lang/ruby/rubyversion.mk" 117.include "../../lang/ruby/rubyversion.mk"
118.include "../../lang/ruby/replace.mk" 118.include "../../lang/ruby/replace.mk"
119TOOL_DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} 119TOOL_DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR}
120CMAKE_ARGS+= -DRUBY_EXECUTABLE=${RUBY} 120CMAKE_ARGS+= -DRUBY_EXECUTABLE=${RUBY}
121 121
122PYTHON_FOR_BUILD_ONLY= yes 122PYTHON_FOR_BUILD_ONLY= yes
123.include "../../lang/python/application.mk" 123.include "../../lang/python/application.mk"
124CMAKE_ARGS+= -DPYTHON_EXECUTABLE=${PYTHONBIN} 124CMAKE_ARGS+= -DPYTHON_EXECUTABLE=${PYTHONBIN}
125 125
126CXXFLAGS.SunOS+= -fpermissive 126CXXFLAGS.SunOS+= -fpermissive
127 127
128.include "../../mk/compiler.mk" 128.include "../../mk/compiler.mk"
129.if !empty(PKGSRC_COMPILER:Mclang) 129.if !empty(PKGSRC_COMPILER:Mclang)
130CXXFLAGS+= -Wno-c++11-narrowing 130CXXFLAGS+= -Wno-c++11-narrowing
131.endif 131.endif
132 132
133# This does not disable optimisations, merely avoids #error if there are none. 133# This does not disable optimisations, merely avoids #error if there are none.
134CFLAGS+= -DRELEASE_WITHOUT_OPTIMIZATIONS 134CFLAGS+= -DRELEASE_WITHOUT_OPTIMIZATIONS
135 135
136# Needed for JavaScript JIT 136# Needed for JavaScript JIT
137NOT_PAX_MPROTECT_SAFE+= libexec/webkit2gtk-4.0/WebKitWebProcess 137NOT_PAX_MPROTECT_SAFE+= libexec/webkit2gtk-4.0/WebKitWebProcess
138NOT_PAX_MPROTECT_SAFE+= libexec/webkit2gtk-4.0/jsc 138NOT_PAX_MPROTECT_SAFE+= libexec/webkit2gtk-4.0/jsc
139 139
140.include "options.mk" 140.include "options.mk"
141 141
142BUILDLINK_API_DEPENDS.glib2+= glib2>=2.32.1 142BUILDLINK_API_DEPENDS.glib2+= glib2>=2.32.1
143.include "../../devel/glib2/buildlink3.mk" 143.include "../../devel/glib2/buildlink3.mk"
144.include "../../devel/zlib/buildlink3.mk" 144.include "../../devel/zlib/buildlink3.mk"
145.include "../../databases/sqlite3/buildlink3.mk" 145.include "../../databases/sqlite3/buildlink3.mk"
146.include "../../devel/gperf/buildlink3.mk" 146.include "../../devel/gperf/buildlink3.mk"
147.include "../../devel/pango/buildlink3.mk" 147.include "../../devel/pango/buildlink3.mk"
148.include "../../fonts/harfbuzz-icu/buildlink3.mk" 148.include "../../fonts/harfbuzz-icu/buildlink3.mk"
149.include "../../fonts/woff2/buildlink3.mk" 149.include "../../fonts/woff2/buildlink3.mk"
150.include "../../graphics/cairo-gobject/buildlink3.mk" 150.include "../../graphics/cairo-gobject/buildlink3.mk"
151.include "../../graphics/freetype2/buildlink3.mk" 151.include "../../graphics/freetype2/buildlink3.mk"
152.include "../../graphics/libwebp/buildlink3.mk" 152.include "../../graphics/libwebp/buildlink3.mk"
153.include "../../mk/jpeg.buildlink3.mk" 153.include "../../mk/jpeg.buildlink3.mk"
154.include "../../graphics/lcms2/buildlink3.mk" 154.include "../../graphics/lcms2/buildlink3.mk"
155BUILDLINK_API_DEPENDS.png+= png>=1.5.1beta08 155BUILDLINK_API_DEPENDS.png+= png>=1.5.1beta08
156.include "../../graphics/png/buildlink3.mk" 156.include "../../graphics/png/buildlink3.mk"
157.include "../../multimedia/gstreamer1/buildlink3.mk" 157.include "../../multimedia/gstreamer1/buildlink3.mk"
158BUILDLINK_API_DEPENDS.gst-plugins1-base+= gst-plugins1-base>=1.0.3 158BUILDLINK_API_DEPENDS.gst-plugins1-base+= gst-plugins1-base>=1.0.3
159.include "../../multimedia/gst-plugins1-base/buildlink3.mk" 159.include "../../multimedia/gst-plugins1-base/buildlink3.mk"
160.include "../../multimedia/gst-plugins1-good/buildlink3.mk" 160.include "../../multimedia/gst-plugins1-good/buildlink3.mk"
161.include "../../net/libsoup/buildlink3.mk" 161.include "../../net/libsoup/buildlink3.mk"
162.include "../../security/libsecret/buildlink3.mk" 162.include "../../security/libsecret/buildlink3.mk"
163.include "../../security/libtasn1/buildlink3.mk" 163.include "../../security/libtasn1/buildlink3.mk"
164.include "../../sysutils/libnotify/buildlink3.mk" 164.include "../../sysutils/libnotify/buildlink3.mk"
165.include "../../textproc/icu/buildlink3.mk" 165.include "../../textproc/icu/buildlink3.mk"
166.include "../../textproc/libxslt/buildlink3.mk" 166.include "../../textproc/libxslt/buildlink3.mk"
167.include "../../x11/gtk3/buildlink3.mk" 167.include "../../x11/gtk3/buildlink3.mk"
168.include "../../x11/libXdamage/buildlink3.mk" 168.include "../../x11/libXdamage/buildlink3.mk"
169.include "../../x11/libXt/buildlink3.mk" 169.include "../../x11/libXt/buildlink3.mk"
170.include "../../mk/pthread.buildlink3.mk" 170.include "../../mk/pthread.buildlink3.mk"
171.include "../../mk/atomic64.mk" 171.include "../../mk/atomic64.mk"
172.include "../../mk/bsd.pkg.mk" 172.include "../../mk/bsd.pkg.mk"

cvs diff -r1.80 -r1.81 pkgsrc/www/webkit-gtk/PLIST (switch to unified diff)

--- pkgsrc/www/webkit-gtk/PLIST 2022/01/21 11:25:58 1.80
+++ pkgsrc/www/webkit-gtk/PLIST 2022/02/09 10:16:41 1.81
@@ -1,286 +1,286 @@ @@ -1,286 +1,286 @@
1@comment $NetBSD: PLIST,v 1.80 2022/01/21 11:25:58 leot Exp $ 1@comment $NetBSD: PLIST,v 1.81 2022/02/09 10:16:41 leot Exp $
2bin/WebKitWebDriver 2bin/WebKitWebDriver
3include/webkitgtk-4.0/JavaScriptCore/JSBase.h 3include/webkitgtk-4.0/JavaScriptCore/JSBase.h
4include/webkitgtk-4.0/JavaScriptCore/JSContextRef.h 4include/webkitgtk-4.0/JavaScriptCore/JSContextRef.h
5include/webkitgtk-4.0/JavaScriptCore/JSObjectRef.h 5include/webkitgtk-4.0/JavaScriptCore/JSObjectRef.h
6include/webkitgtk-4.0/JavaScriptCore/JSStringRef.h 6include/webkitgtk-4.0/JavaScriptCore/JSStringRef.h
7include/webkitgtk-4.0/JavaScriptCore/JSTypedArray.h 7include/webkitgtk-4.0/JavaScriptCore/JSTypedArray.h
8include/webkitgtk-4.0/JavaScriptCore/JSValueRef.h 8include/webkitgtk-4.0/JavaScriptCore/JSValueRef.h
9include/webkitgtk-4.0/JavaScriptCore/JavaScript.h 9include/webkitgtk-4.0/JavaScriptCore/JavaScript.h
10include/webkitgtk-4.0/JavaScriptCore/WebKitAvailability.h 10include/webkitgtk-4.0/JavaScriptCore/WebKitAvailability.h
11include/webkitgtk-4.0/jsc/JSCAutocleanups.h 11include/webkitgtk-4.0/jsc/JSCAutocleanups.h
12include/webkitgtk-4.0/jsc/JSCClass.h 12include/webkitgtk-4.0/jsc/JSCClass.h
13include/webkitgtk-4.0/jsc/JSCContext.h 13include/webkitgtk-4.0/jsc/JSCContext.h
14include/webkitgtk-4.0/jsc/JSCDefines.h 14include/webkitgtk-4.0/jsc/JSCDefines.h
15include/webkitgtk-4.0/jsc/JSCException.h 15include/webkitgtk-4.0/jsc/JSCException.h
16include/webkitgtk-4.0/jsc/JSCOptions.h 16include/webkitgtk-4.0/jsc/JSCOptions.h
17include/webkitgtk-4.0/jsc/JSCValue.h 17include/webkitgtk-4.0/jsc/JSCValue.h
18include/webkitgtk-4.0/jsc/JSCVersion.h 18include/webkitgtk-4.0/jsc/JSCVersion.h
19include/webkitgtk-4.0/jsc/JSCVirtualMachine.h 19include/webkitgtk-4.0/jsc/JSCVirtualMachine.h
20include/webkitgtk-4.0/jsc/JSCWeakValue.h 20include/webkitgtk-4.0/jsc/JSCWeakValue.h
21include/webkitgtk-4.0/jsc/jsc.h 21include/webkitgtk-4.0/jsc/jsc.h
22include/webkitgtk-4.0/webkit2/WebKitApplicationInfo.h 22include/webkitgtk-4.0/webkit2/WebKitApplicationInfo.h
23include/webkitgtk-4.0/webkit2/WebKitAuthenticationRequest.h 23include/webkitgtk-4.0/webkit2/WebKitAuthenticationRequest.h
24include/webkitgtk-4.0/webkit2/WebKitAutocleanups.h 24include/webkitgtk-4.0/webkit2/WebKitAutocleanups.h
25include/webkitgtk-4.0/webkit2/WebKitAutomationSession.h 25include/webkitgtk-4.0/webkit2/WebKitAutomationSession.h
26include/webkitgtk-4.0/webkit2/WebKitBackForwardList.h 26include/webkitgtk-4.0/webkit2/WebKitBackForwardList.h
27include/webkitgtk-4.0/webkit2/WebKitBackForwardListItem.h 27include/webkitgtk-4.0/webkit2/WebKitBackForwardListItem.h
28include/webkitgtk-4.0/webkit2/WebKitColorChooserRequest.h 28include/webkitgtk-4.0/webkit2/WebKitColorChooserRequest.h
29include/webkitgtk-4.0/webkit2/WebKitConsoleMessage.h 29include/webkitgtk-4.0/webkit2/WebKitConsoleMessage.h
30include/webkitgtk-4.0/webkit2/WebKitContextMenu.h 30include/webkitgtk-4.0/webkit2/WebKitContextMenu.h
31include/webkitgtk-4.0/webkit2/WebKitContextMenuActions.h 31include/webkitgtk-4.0/webkit2/WebKitContextMenuActions.h
32include/webkitgtk-4.0/webkit2/WebKitContextMenuItem.h 32include/webkitgtk-4.0/webkit2/WebKitContextMenuItem.h
33include/webkitgtk-4.0/webkit2/WebKitCookieManager.h 33include/webkitgtk-4.0/webkit2/WebKitCookieManager.h
34include/webkitgtk-4.0/webkit2/WebKitCredential.h 34include/webkitgtk-4.0/webkit2/WebKitCredential.h
35include/webkitgtk-4.0/webkit2/WebKitDefines.h 35include/webkitgtk-4.0/webkit2/WebKitDefines.h
36include/webkitgtk-4.0/webkit2/WebKitDeviceInfoPermissionRequest.h 36include/webkitgtk-4.0/webkit2/WebKitDeviceInfoPermissionRequest.h
37include/webkitgtk-4.0/webkit2/WebKitDownload.h 37include/webkitgtk-4.0/webkit2/WebKitDownload.h
38include/webkitgtk-4.0/webkit2/WebKitEditingCommands.h 38include/webkitgtk-4.0/webkit2/WebKitEditingCommands.h
39include/webkitgtk-4.0/webkit2/WebKitEditorState.h 39include/webkitgtk-4.0/webkit2/WebKitEditorState.h
40include/webkitgtk-4.0/webkit2/WebKitEnumTypes.h 40include/webkitgtk-4.0/webkit2/WebKitEnumTypes.h
41include/webkitgtk-4.0/webkit2/WebKitError.h 41include/webkitgtk-4.0/webkit2/WebKitError.h
42include/webkitgtk-4.0/webkit2/WebKitFaviconDatabase.h 42include/webkitgtk-4.0/webkit2/WebKitFaviconDatabase.h
43include/webkitgtk-4.0/webkit2/WebKitFileChooserRequest.h 43include/webkitgtk-4.0/webkit2/WebKitFileChooserRequest.h
44include/webkitgtk-4.0/webkit2/WebKitFindController.h 44include/webkitgtk-4.0/webkit2/WebKitFindController.h
45include/webkitgtk-4.0/webkit2/WebKitFormSubmissionRequest.h 45include/webkitgtk-4.0/webkit2/WebKitFormSubmissionRequest.h
46include/webkitgtk-4.0/webkit2/WebKitForwardDeclarations.h 46include/webkitgtk-4.0/webkit2/WebKitForwardDeclarations.h
47include/webkitgtk-4.0/webkit2/WebKitFrame.h 47include/webkitgtk-4.0/webkit2/WebKitFrame.h
48include/webkitgtk-4.0/webkit2/WebKitGeolocationManager.h 48include/webkitgtk-4.0/webkit2/WebKitGeolocationManager.h
49include/webkitgtk-4.0/webkit2/WebKitGeolocationPermissionRequest.h 49include/webkitgtk-4.0/webkit2/WebKitGeolocationPermissionRequest.h
50include/webkitgtk-4.0/webkit2/WebKitHitTestResult.h 50include/webkitgtk-4.0/webkit2/WebKitHitTestResult.h
51include/webkitgtk-4.0/webkit2/WebKitInputMethodContext.h 51include/webkitgtk-4.0/webkit2/WebKitInputMethodContext.h
52include/webkitgtk-4.0/webkit2/WebKitInstallMissingMediaPluginsPermissionRequest.h 52include/webkitgtk-4.0/webkit2/WebKitInstallMissingMediaPluginsPermissionRequest.h
53include/webkitgtk-4.0/webkit2/WebKitJavascriptResult.h 53include/webkitgtk-4.0/webkit2/WebKitJavascriptResult.h
54include/webkitgtk-4.0/webkit2/WebKitMediaKeySystemPermissionRequest.h 54include/webkitgtk-4.0/webkit2/WebKitMediaKeySystemPermissionRequest.h
55include/webkitgtk-4.0/webkit2/WebKitMemoryPressureSettings.h 55include/webkitgtk-4.0/webkit2/WebKitMemoryPressureSettings.h
56include/webkitgtk-4.0/webkit2/WebKitMimeInfo.h 56include/webkitgtk-4.0/webkit2/WebKitMimeInfo.h
57include/webkitgtk-4.0/webkit2/WebKitNavigationAction.h 57include/webkitgtk-4.0/webkit2/WebKitNavigationAction.h
58include/webkitgtk-4.0/webkit2/WebKitNavigationPolicyDecision.h 58include/webkitgtk-4.0/webkit2/WebKitNavigationPolicyDecision.h
59include/webkitgtk-4.0/webkit2/WebKitNetworkProxySettings.h 59include/webkitgtk-4.0/webkit2/WebKitNetworkProxySettings.h
60include/webkitgtk-4.0/webkit2/WebKitNotification.h 60include/webkitgtk-4.0/webkit2/WebKitNotification.h
61include/webkitgtk-4.0/webkit2/WebKitNotificationPermissionRequest.h 61include/webkitgtk-4.0/webkit2/WebKitNotificationPermissionRequest.h
62include/webkitgtk-4.0/webkit2/WebKitOptionMenu.h 62include/webkitgtk-4.0/webkit2/WebKitOptionMenu.h
63include/webkitgtk-4.0/webkit2/WebKitOptionMenuItem.h 63include/webkitgtk-4.0/webkit2/WebKitOptionMenuItem.h
64include/webkitgtk-4.0/webkit2/WebKitPermissionRequest.h 64include/webkitgtk-4.0/webkit2/WebKitPermissionRequest.h
65include/webkitgtk-4.0/webkit2/WebKitPlugin.h 65include/webkitgtk-4.0/webkit2/WebKitPlugin.h
66include/webkitgtk-4.0/webkit2/WebKitPointerLockPermissionRequest.h 66include/webkitgtk-4.0/webkit2/WebKitPointerLockPermissionRequest.h
67include/webkitgtk-4.0/webkit2/WebKitPolicyDecision.h 67include/webkitgtk-4.0/webkit2/WebKitPolicyDecision.h
68include/webkitgtk-4.0/webkit2/WebKitPrintCustomWidget.h 68include/webkitgtk-4.0/webkit2/WebKitPrintCustomWidget.h
69include/webkitgtk-4.0/webkit2/WebKitPrintOperation.h 69include/webkitgtk-4.0/webkit2/WebKitPrintOperation.h
70include/webkitgtk-4.0/webkit2/WebKitResponsePolicyDecision.h 70include/webkitgtk-4.0/webkit2/WebKitResponsePolicyDecision.h
71include/webkitgtk-4.0/webkit2/WebKitScriptDialog.h 71include/webkitgtk-4.0/webkit2/WebKitScriptDialog.h
72include/webkitgtk-4.0/webkit2/WebKitScriptWorld.h 72include/webkitgtk-4.0/webkit2/WebKitScriptWorld.h
73include/webkitgtk-4.0/webkit2/WebKitSecurityManager.h 73include/webkitgtk-4.0/webkit2/WebKitSecurityManager.h
74include/webkitgtk-4.0/webkit2/WebKitSecurityOrigin.h 74include/webkitgtk-4.0/webkit2/WebKitSecurityOrigin.h
75include/webkitgtk-4.0/webkit2/WebKitSettings.h 75include/webkitgtk-4.0/webkit2/WebKitSettings.h
76include/webkitgtk-4.0/webkit2/WebKitURIRequest.h 76include/webkitgtk-4.0/webkit2/WebKitURIRequest.h
77include/webkitgtk-4.0/webkit2/WebKitURIResponse.h 77include/webkitgtk-4.0/webkit2/WebKitURIResponse.h
78include/webkitgtk-4.0/webkit2/WebKitURISchemeRequest.h 78include/webkitgtk-4.0/webkit2/WebKitURISchemeRequest.h
79include/webkitgtk-4.0/webkit2/WebKitURIUtilities.h 79include/webkitgtk-4.0/webkit2/WebKitURIUtilities.h
80include/webkitgtk-4.0/webkit2/WebKitUserContent.h 80include/webkitgtk-4.0/webkit2/WebKitUserContent.h
81include/webkitgtk-4.0/webkit2/WebKitUserContentFilterStore.h 81include/webkitgtk-4.0/webkit2/WebKitUserContentFilterStore.h
82include/webkitgtk-4.0/webkit2/WebKitUserContentManager.h 82include/webkitgtk-4.0/webkit2/WebKitUserContentManager.h
83include/webkitgtk-4.0/webkit2/WebKitUserMediaPermissionRequest.h 83include/webkitgtk-4.0/webkit2/WebKitUserMediaPermissionRequest.h
84include/webkitgtk-4.0/webkit2/WebKitUserMessage.h 84include/webkitgtk-4.0/webkit2/WebKitUserMessage.h
85include/webkitgtk-4.0/webkit2/WebKitVersion.h 85include/webkitgtk-4.0/webkit2/WebKitVersion.h
86include/webkitgtk-4.0/webkit2/WebKitWebContext.h 86include/webkitgtk-4.0/webkit2/WebKitWebContext.h
87include/webkitgtk-4.0/webkit2/WebKitWebEditor.h 87include/webkitgtk-4.0/webkit2/WebKitWebEditor.h
88include/webkitgtk-4.0/webkit2/WebKitWebExtension.h 88include/webkitgtk-4.0/webkit2/WebKitWebExtension.h
89include/webkitgtk-4.0/webkit2/WebKitWebExtensionAutocleanups.h 89include/webkitgtk-4.0/webkit2/WebKitWebExtensionAutocleanups.h
90include/webkitgtk-4.0/webkit2/WebKitWebHitTestResult.h 90include/webkitgtk-4.0/webkit2/WebKitWebHitTestResult.h
91include/webkitgtk-4.0/webkit2/WebKitWebInspector.h 91include/webkitgtk-4.0/webkit2/WebKitWebInspector.h
92include/webkitgtk-4.0/webkit2/WebKitWebPage.h 92include/webkitgtk-4.0/webkit2/WebKitWebPage.h
93include/webkitgtk-4.0/webkit2/WebKitWebProcessEnumTypes.h 93include/webkitgtk-4.0/webkit2/WebKitWebProcessEnumTypes.h
94include/webkitgtk-4.0/webkit2/WebKitWebResource.h 94include/webkitgtk-4.0/webkit2/WebKitWebResource.h
95include/webkitgtk-4.0/webkit2/WebKitWebView.h 95include/webkitgtk-4.0/webkit2/WebKitWebView.h
96include/webkitgtk-4.0/webkit2/WebKitWebViewBase.h 96include/webkitgtk-4.0/webkit2/WebKitWebViewBase.h
97include/webkitgtk-4.0/webkit2/WebKitWebViewSessionState.h 97include/webkitgtk-4.0/webkit2/WebKitWebViewSessionState.h
98include/webkitgtk-4.0/webkit2/WebKitWebsiteData.h 98include/webkitgtk-4.0/webkit2/WebKitWebsiteData.h
99include/webkitgtk-4.0/webkit2/WebKitWebsiteDataAccessPermissionRequest.h 99include/webkitgtk-4.0/webkit2/WebKitWebsiteDataAccessPermissionRequest.h
100include/webkitgtk-4.0/webkit2/WebKitWebsiteDataManager.h 100include/webkitgtk-4.0/webkit2/WebKitWebsiteDataManager.h
101include/webkitgtk-4.0/webkit2/WebKitWebsitePolicies.h 101include/webkitgtk-4.0/webkit2/WebKitWebsitePolicies.h
102include/webkitgtk-4.0/webkit2/WebKitWindowProperties.h 102include/webkitgtk-4.0/webkit2/WebKitWindowProperties.h
103include/webkitgtk-4.0/webkit2/webkit-web-extension.h 103include/webkitgtk-4.0/webkit2/webkit-web-extension.h
104include/webkitgtk-4.0/webkit2/webkit2.h 104include/webkitgtk-4.0/webkit2/webkit2.h
105include/webkitgtk-4.0/webkitdom/WebKitDOMAttr.h 105include/webkitgtk-4.0/webkitdom/WebKitDOMAttr.h
106include/webkitgtk-4.0/webkitdom/WebKitDOMBlob.h 106include/webkitgtk-4.0/webkitdom/WebKitDOMBlob.h
107include/webkitgtk-4.0/webkitdom/WebKitDOMCDATASection.h 107include/webkitgtk-4.0/webkitdom/WebKitDOMCDATASection.h
108include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRule.h 108include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRule.h
109include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRuleList.h 109include/webkitgtk-4.0/webkitdom/WebKitDOMCSSRuleList.h
110include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleDeclaration.h 110include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleDeclaration.h
111include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleSheet.h 111include/webkitgtk-4.0/webkitdom/WebKitDOMCSSStyleSheet.h
112include/webkitgtk-4.0/webkitdom/WebKitDOMCSSValue.h 112include/webkitgtk-4.0/webkitdom/WebKitDOMCSSValue.h
113include/webkitgtk-4.0/webkitdom/WebKitDOMCharacterData.h 113include/webkitgtk-4.0/webkitdom/WebKitDOMCharacterData.h
114include/webkitgtk-4.0/webkitdom/WebKitDOMClientRect.h 114include/webkitgtk-4.0/webkitdom/WebKitDOMClientRect.h
115include/webkitgtk-4.0/webkitdom/WebKitDOMClientRectList.h 115include/webkitgtk-4.0/webkitdom/WebKitDOMClientRectList.h
116include/webkitgtk-4.0/webkitdom/WebKitDOMComment.h 116include/webkitgtk-4.0/webkitdom/WebKitDOMComment.h
117include/webkitgtk-4.0/webkitdom/WebKitDOMCustom.h 117include/webkitgtk-4.0/webkitdom/WebKitDOMCustom.h
118include/webkitgtk-4.0/webkitdom/WebKitDOMCustomUnstable.h 118include/webkitgtk-4.0/webkitdom/WebKitDOMCustomUnstable.h
119include/webkitgtk-4.0/webkitdom/WebKitDOMDOMImplementation.h 119include/webkitgtk-4.0/webkitdom/WebKitDOMDOMImplementation.h
120include/webkitgtk-4.0/webkitdom/WebKitDOMDOMSelection.h 120include/webkitgtk-4.0/webkitdom/WebKitDOMDOMSelection.h
121include/webkitgtk-4.0/webkitdom/WebKitDOMDOMTokenList.h 121include/webkitgtk-4.0/webkitdom/WebKitDOMDOMTokenList.h
122include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindow.h 122include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindow.h
123include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindowUnstable.h 123include/webkitgtk-4.0/webkitdom/WebKitDOMDOMWindowUnstable.h
124include/webkitgtk-4.0/webkitdom/WebKitDOMDeprecated.h 124include/webkitgtk-4.0/webkitdom/WebKitDOMDeprecated.h
125include/webkitgtk-4.0/webkitdom/WebKitDOMDocument.h 125include/webkitgtk-4.0/webkitdom/WebKitDOMDocument.h
126include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragment.h 126include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragment.h
127include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragmentUnstable.h 127include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentFragmentUnstable.h
128include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentType.h 128include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentType.h
129include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentUnstable.h 129include/webkitgtk-4.0/webkitdom/WebKitDOMDocumentUnstable.h
130include/webkitgtk-4.0/webkitdom/WebKitDOMElement.h 130include/webkitgtk-4.0/webkitdom/WebKitDOMElement.h
131include/webkitgtk-4.0/webkitdom/WebKitDOMElementUnstable.h 131include/webkitgtk-4.0/webkitdom/WebKitDOMElementUnstable.h
132include/webkitgtk-4.0/webkitdom/WebKitDOMEvent.h 132include/webkitgtk-4.0/webkitdom/WebKitDOMEvent.h
133include/webkitgtk-4.0/webkitdom/WebKitDOMEventTarget.h 133include/webkitgtk-4.0/webkitdom/WebKitDOMEventTarget.h
134include/webkitgtk-4.0/webkitdom/WebKitDOMFile.h 134include/webkitgtk-4.0/webkitdom/WebKitDOMFile.h
135include/webkitgtk-4.0/webkitdom/WebKitDOMFileList.h 135include/webkitgtk-4.0/webkitdom/WebKitDOMFileList.h
136include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAnchorElement.h 136include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAnchorElement.h
137include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAppletElement.h 137include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAppletElement.h
138include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAreaElement.h 138include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLAreaElement.h
139include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBRElement.h 139include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBRElement.h
140include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBaseElement.h 140include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBaseElement.h
141include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBodyElement.h 141include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLBodyElement.h
142include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLButtonElement.h 142include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLButtonElement.h
143include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCanvasElement.h 143include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCanvasElement.h
144include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCollection.h 144include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLCollection.h
145include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDListElement.h 145include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDListElement.h
146include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDirectoryElement.h 146include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDirectoryElement.h
147include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDivElement.h 147include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDivElement.h
148include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDocument.h 148include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLDocument.h
149include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElement.h 149include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElement.h
150include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElementUnstable.h 150include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLElementUnstable.h
151include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLEmbedElement.h 151include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLEmbedElement.h
152include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFieldSetElement.h 152include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFieldSetElement.h
153include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFontElement.h 153include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFontElement.h
154include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFormElement.h 154include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFormElement.h
155include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameElement.h 155include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameElement.h
156include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameSetElement.h 156include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLFrameSetElement.h
157include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHRElement.h 157include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHRElement.h
158include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadElement.h 158include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadElement.h
159include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadingElement.h 159include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHeadingElement.h
160include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHtmlElement.h 160include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLHtmlElement.h
161include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLIFrameElement.h 161include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLIFrameElement.h
162include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLImageElement.h 162include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLImageElement.h
163include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLInputElement.h 163include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLInputElement.h
164include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLIElement.h 164include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLIElement.h
165include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLabelElement.h 165include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLabelElement.h
166include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLegendElement.h 166include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLegendElement.h
167include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLinkElement.h 167include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLLinkElement.h
168include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMapElement.h 168include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMapElement.h
169include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMarqueeElement.h 169include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMarqueeElement.h
170include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMenuElement.h 170include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMenuElement.h
171include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMetaElement.h 171include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLMetaElement.h
172include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLModElement.h 172include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLModElement.h
173include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOListElement.h 173include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOListElement.h
174include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLObjectElement.h 174include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLObjectElement.h
175include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptGroupElement.h 175include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptGroupElement.h
176include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionElement.h 176include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionElement.h
177include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionsCollection.h 177include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLOptionsCollection.h
178include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParagraphElement.h 178include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParagraphElement.h
179include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParamElement.h 179include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLParamElement.h
180include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLPreElement.h 180include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLPreElement.h
181include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLQuoteElement.h 181include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLQuoteElement.h
182include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLScriptElement.h 182include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLScriptElement.h
183include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLSelectElement.h 183include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLSelectElement.h
184include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLStyleElement.h 184include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLStyleElement.h
185include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h 185include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h
186include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCellElement.h 186include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableCellElement.h
187include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableColElement.h 187include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableColElement.h
188include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableElement.h 188include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableElement.h
189include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableRowElement.h 189include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableRowElement.h
190include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableSectionElement.h 190include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTableSectionElement.h
191include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTextAreaElement.h 191include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTextAreaElement.h
192include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTitleElement.h 192include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLTitleElement.h
193include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLUListElement.h 193include/webkitgtk-4.0/webkitdom/WebKitDOMHTMLUListElement.h
194include/webkitgtk-4.0/webkitdom/WebKitDOMKeyboardEvent.h 194include/webkitgtk-4.0/webkitdom/WebKitDOMKeyboardEvent.h
195include/webkitgtk-4.0/webkitdom/WebKitDOMMediaList.h 195include/webkitgtk-4.0/webkitdom/WebKitDOMMediaList.h
196include/webkitgtk-4.0/webkitdom/WebKitDOMMouseEvent.h 196include/webkitgtk-4.0/webkitdom/WebKitDOMMouseEvent.h
197include/webkitgtk-4.0/webkitdom/WebKitDOMNamedNodeMap.h 197include/webkitgtk-4.0/webkitdom/WebKitDOMNamedNodeMap.h
198include/webkitgtk-4.0/webkitdom/WebKitDOMNode.h 198include/webkitgtk-4.0/webkitdom/WebKitDOMNode.h
199include/webkitgtk-4.0/webkitdom/WebKitDOMNodeFilter.h 199include/webkitgtk-4.0/webkitdom/WebKitDOMNodeFilter.h
200include/webkitgtk-4.0/webkitdom/WebKitDOMNodeIterator.h 200include/webkitgtk-4.0/webkitdom/WebKitDOMNodeIterator.h
201include/webkitgtk-4.0/webkitdom/WebKitDOMNodeList.h 201include/webkitgtk-4.0/webkitdom/WebKitDOMNodeList.h
202include/webkitgtk-4.0/webkitdom/WebKitDOMObject.h 202include/webkitgtk-4.0/webkitdom/WebKitDOMObject.h
203include/webkitgtk-4.0/webkitdom/WebKitDOMProcessingInstruction.h 203include/webkitgtk-4.0/webkitdom/WebKitDOMProcessingInstruction.h
204include/webkitgtk-4.0/webkitdom/WebKitDOMRange.h 204include/webkitgtk-4.0/webkitdom/WebKitDOMRange.h
205include/webkitgtk-4.0/webkitdom/WebKitDOMRangeUnstable.h 205include/webkitgtk-4.0/webkitdom/WebKitDOMRangeUnstable.h
206include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheet.h 206include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheet.h
207include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheetList.h 207include/webkitgtk-4.0/webkitdom/WebKitDOMStyleSheetList.h
208include/webkitgtk-4.0/webkitdom/WebKitDOMText.h 208include/webkitgtk-4.0/webkitdom/WebKitDOMText.h
209include/webkitgtk-4.0/webkitdom/WebKitDOMTreeWalker.h 209include/webkitgtk-4.0/webkitdom/WebKitDOMTreeWalker.h
210include/webkitgtk-4.0/webkitdom/WebKitDOMUIEvent.h 210include/webkitgtk-4.0/webkitdom/WebKitDOMUIEvent.h
211include/webkitgtk-4.0/webkitdom/WebKitDOMWheelEvent.h 211include/webkitgtk-4.0/webkitdom/WebKitDOMWheelEvent.h
212include/webkitgtk-4.0/webkitdom/WebKitDOMXPathExpression.h 212include/webkitgtk-4.0/webkitdom/WebKitDOMXPathExpression.h
213include/webkitgtk-4.0/webkitdom/WebKitDOMXPathNSResolver.h 213include/webkitgtk-4.0/webkitdom/WebKitDOMXPathNSResolver.h
214include/webkitgtk-4.0/webkitdom/WebKitDOMXPathResult.h 214include/webkitgtk-4.0/webkitdom/WebKitDOMXPathResult.h
215include/webkitgtk-4.0/webkitdom/webkitdom.h 215include/webkitgtk-4.0/webkitdom/webkitdom.h
216include/webkitgtk-4.0/webkitdom/webkitdomautocleanups.h 216include/webkitgtk-4.0/webkitdom/webkitdomautocleanups.h
217include/webkitgtk-4.0/webkitdom/webkitdomdefines.h 217include/webkitgtk-4.0/webkitdom/webkitdomdefines.h
218${PLIST.introspection}lib/girepository-1.0/JavaScriptCore-4.0.typelib 218${PLIST.introspection}lib/girepository-1.0/JavaScriptCore-4.0.typelib
219${PLIST.introspection}lib/girepository-1.0/WebKit2-4.0.typelib 219${PLIST.introspection}lib/girepository-1.0/WebKit2-4.0.typelib
220${PLIST.introspection}lib/girepository-1.0/WebKit2WebExtension-4.0.typelib 220${PLIST.introspection}lib/girepository-1.0/WebKit2WebExtension-4.0.typelib
221lib/libjavascriptcoregtk-4.0.so 221lib/libjavascriptcoregtk-4.0.so
222lib/libjavascriptcoregtk-4.0.so.18 222lib/libjavascriptcoregtk-4.0.so.18
223lib/libjavascriptcoregtk-4.0.so.18.19.9 223lib/libjavascriptcoregtk-4.0.so.18.19.10
224lib/libwebkit2gtk-4.0.so 224lib/libwebkit2gtk-4.0.so
225lib/libwebkit2gtk-4.0.so.37 225lib/libwebkit2gtk-4.0.so.37
226lib/libwebkit2gtk-4.0.so.37.55.7 226lib/libwebkit2gtk-4.0.so.37.55.8
227lib/pkgconfig/javascriptcoregtk-4.0.pc 227lib/pkgconfig/javascriptcoregtk-4.0.pc
228lib/pkgconfig/webkit2gtk-4.0.pc 228lib/pkgconfig/webkit2gtk-4.0.pc
229lib/pkgconfig/webkit2gtk-web-extension-4.0.pc 229lib/pkgconfig/webkit2gtk-web-extension-4.0.pc
230lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so 230lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so
231libexec/webkit2gtk-4.0/MiniBrowser 231libexec/webkit2gtk-4.0/MiniBrowser
232libexec/webkit2gtk-4.0/WebKitNetworkProcess 232libexec/webkit2gtk-4.0/WebKitNetworkProcess
233libexec/webkit2gtk-4.0/WebKitWebProcess 233libexec/webkit2gtk-4.0/WebKitWebProcess
234libexec/webkit2gtk-4.0/jsc 234libexec/webkit2gtk-4.0/jsc
235${PLIST.introspection}share/gir-1.0/JavaScriptCore-4.0.gir 235${PLIST.introspection}share/gir-1.0/JavaScriptCore-4.0.gir
236${PLIST.introspection}share/gir-1.0/WebKit2-4.0.gir 236${PLIST.introspection}share/gir-1.0/WebKit2-4.0.gir
237${PLIST.introspection}share/gir-1.0/WebKit2WebExtension-4.0.gir 237${PLIST.introspection}share/gir-1.0/WebKit2WebExtension-4.0.gir
238share/locale/ar/LC_MESSAGES/WebKit2GTK-4.0.mo 238share/locale/ar/LC_MESSAGES/WebKit2GTK-4.0.mo
239share/locale/as/LC_MESSAGES/WebKit2GTK-4.0.mo 239share/locale/as/LC_MESSAGES/WebKit2GTK-4.0.mo
240share/locale/bg/LC_MESSAGES/WebKit2GTK-4.0.mo 240share/locale/bg/LC_MESSAGES/WebKit2GTK-4.0.mo
241share/locale/ca/LC_MESSAGES/WebKit2GTK-4.0.mo 241share/locale/ca/LC_MESSAGES/WebKit2GTK-4.0.mo
242share/locale/cs/LC_MESSAGES/WebKit2GTK-4.0.mo 242share/locale/cs/LC_MESSAGES/WebKit2GTK-4.0.mo
243share/locale/da/LC_MESSAGES/WebKit2GTK-4.0.mo 243share/locale/da/LC_MESSAGES/WebKit2GTK-4.0.mo
244share/locale/de/LC_MESSAGES/WebKit2GTK-4.0.mo 244share/locale/de/LC_MESSAGES/WebKit2GTK-4.0.mo
245share/locale/el/LC_MESSAGES/WebKit2GTK-4.0.mo 245share/locale/el/LC_MESSAGES/WebKit2GTK-4.0.mo
246share/locale/en_CA/LC_MESSAGES/WebKit2GTK-4.0.mo 246share/locale/en_CA/LC_MESSAGES/WebKit2GTK-4.0.mo
247share/locale/en_GB/LC_MESSAGES/WebKit2GTK-4.0.mo 247share/locale/en_GB/LC_MESSAGES/WebKit2GTK-4.0.mo
248share/locale/eo/LC_MESSAGES/WebKit2GTK-4.0.mo 248share/locale/eo/LC_MESSAGES/WebKit2GTK-4.0.mo
249share/locale/es/LC_MESSAGES/WebKit2GTK-4.0.mo 249share/locale/es/LC_MESSAGES/WebKit2GTK-4.0.mo
250share/locale/et/LC_MESSAGES/WebKit2GTK-4.0.mo 250share/locale/et/LC_MESSAGES/WebKit2GTK-4.0.mo
251share/locale/eu/LC_MESSAGES/WebKit2GTK-4.0.mo 251share/locale/eu/LC_MESSAGES/WebKit2GTK-4.0.mo
252share/locale/fi/LC_MESSAGES/WebKit2GTK-4.0.mo 252share/locale/fi/LC_MESSAGES/WebKit2GTK-4.0.mo
253share/locale/fr/LC_MESSAGES/WebKit2GTK-4.0.mo 253share/locale/fr/LC_MESSAGES/WebKit2GTK-4.0.mo
254share/locale/gl/LC_MESSAGES/WebKit2GTK-4.0.mo 254share/locale/gl/LC_MESSAGES/WebKit2GTK-4.0.mo
255share/locale/gu/LC_MESSAGES/WebKit2GTK-4.0.mo 255share/locale/gu/LC_MESSAGES/WebKit2GTK-4.0.mo
256share/locale/he/LC_MESSAGES/WebKit2GTK-4.0.mo 256share/locale/he/LC_MESSAGES/WebKit2GTK-4.0.mo
257share/locale/hi/LC_MESSAGES/WebKit2GTK-4.0.mo 257share/locale/hi/LC_MESSAGES/WebKit2GTK-4.0.mo
258share/locale/hu/LC_MESSAGES/WebKit2GTK-4.0.mo 258share/locale/hu/LC_MESSAGES/WebKit2GTK-4.0.mo
259share/locale/id/LC_MESSAGES/WebKit2GTK-4.0.mo 259share/locale/id/LC_MESSAGES/WebKit2GTK-4.0.mo
260share/locale/it/LC_MESSAGES/WebKit2GTK-4.0.mo 260share/locale/it/LC_MESSAGES/WebKit2GTK-4.0.mo
261share/locale/ja/LC_MESSAGES/WebKit2GTK-4.0.mo 261share/locale/ja/LC_MESSAGES/WebKit2GTK-4.0.mo
262share/locale/kn/LC_MESSAGES/WebKit2GTK-4.0.mo 262share/locale/kn/LC_MESSAGES/WebKit2GTK-4.0.mo
263share/locale/ko/LC_MESSAGES/WebKit2GTK-4.0.mo 263share/locale/ko/LC_MESSAGES/WebKit2GTK-4.0.mo
264share/locale/lt/LC_MESSAGES/WebKit2GTK-4.0.mo 264share/locale/lt/LC_MESSAGES/WebKit2GTK-4.0.mo
265share/locale/lv/LC_MESSAGES/WebKit2GTK-4.0.mo 265share/locale/lv/LC_MESSAGES/WebKit2GTK-4.0.mo
266share/locale/ml/LC_MESSAGES/WebKit2GTK-4.0.mo 266share/locale/ml/LC_MESSAGES/WebKit2GTK-4.0.mo
267share/locale/mr/LC_MESSAGES/WebKit2GTK-4.0.mo 267share/locale/mr/LC_MESSAGES/WebKit2GTK-4.0.mo
268share/locale/nb/LC_MESSAGES/WebKit2GTK-4.0.mo 268share/locale/nb/LC_MESSAGES/WebKit2GTK-4.0.mo
269share/locale/nl/LC_MESSAGES/WebKit2GTK-4.0.mo 269share/locale/nl/LC_MESSAGES/WebKit2GTK-4.0.mo
270share/locale/or/LC_MESSAGES/WebKit2GTK-4.0.mo 270share/locale/or/LC_MESSAGES/WebKit2GTK-4.0.mo
271share/locale/pa/LC_MESSAGES/WebKit2GTK-4.0.mo 271share/locale/pa/LC_MESSAGES/WebKit2GTK-4.0.mo
272share/locale/pl/LC_MESSAGES/WebKit2GTK-4.0.mo 272share/locale/pl/LC_MESSAGES/WebKit2GTK-4.0.mo
273share/locale/pt/LC_MESSAGES/WebKit2GTK-4.0.mo 273share/locale/pt/LC_MESSAGES/WebKit2GTK-4.0.mo
274share/locale/pt_BR/LC_MESSAGES/WebKit2GTK-4.0.mo 274share/locale/pt_BR/LC_MESSAGES/WebKit2GTK-4.0.mo
275share/locale/ro/LC_MESSAGES/WebKit2GTK-4.0.mo 275share/locale/ro/LC_MESSAGES/WebKit2GTK-4.0.mo
276share/locale/ru/LC_MESSAGES/WebKit2GTK-4.0.mo 276share/locale/ru/LC_MESSAGES/WebKit2GTK-4.0.mo
277share/locale/sl/LC_MESSAGES/WebKit2GTK-4.0.mo 277share/locale/sl/LC_MESSAGES/WebKit2GTK-4.0.mo
278share/locale/sr/LC_MESSAGES/WebKit2GTK-4.0.mo 278share/locale/sr/LC_MESSAGES/WebKit2GTK-4.0.mo
279share/locale/sr@latin/LC_MESSAGES/WebKit2GTK-4.0.mo 279share/locale/sr@latin/LC_MESSAGES/WebKit2GTK-4.0.mo
280share/locale/sv/LC_MESSAGES/WebKit2GTK-4.0.mo 280share/locale/sv/LC_MESSAGES/WebKit2GTK-4.0.mo
281share/locale/ta/LC_MESSAGES/WebKit2GTK-4.0.mo 281share/locale/ta/LC_MESSAGES/WebKit2GTK-4.0.mo
282share/locale/te/LC_MESSAGES/WebKit2GTK-4.0.mo 282share/locale/te/LC_MESSAGES/WebKit2GTK-4.0.mo
283share/locale/tr/LC_MESSAGES/WebKit2GTK-4.0.mo 283share/locale/tr/LC_MESSAGES/WebKit2GTK-4.0.mo
284share/locale/uk/LC_MESSAGES/WebKit2GTK-4.0.mo 284share/locale/uk/LC_MESSAGES/WebKit2GTK-4.0.mo
285share/locale/vi/LC_MESSAGES/WebKit2GTK-4.0.mo 285share/locale/vi/LC_MESSAGES/WebKit2GTK-4.0.mo
286share/locale/zh_CN/LC_MESSAGES/WebKit2GTK-4.0.mo 286share/locale/zh_CN/LC_MESSAGES/WebKit2GTK-4.0.mo

cvs diff -r1.160 -r1.161 pkgsrc/www/webkit-gtk/distinfo (switch to unified diff)

--- pkgsrc/www/webkit-gtk/distinfo 2022/01/21 11:25:58 1.160
+++ pkgsrc/www/webkit-gtk/distinfo 2022/02/09 10:16:41 1.161
@@ -1,46 +1,46 @@ @@ -1,46 +1,46 @@
1$NetBSD: distinfo,v 1.160 2022/01/21 11:25:58 leot Exp $ 1$NetBSD: distinfo,v 1.161 2022/02/09 10:16:41 leot Exp $
2 2
3BLAKE2s (webkitgtk-2.34.4.tar.xz) = b175a3f4347885bca52d08c26b57741712d69514e5df84d4a6a117f528bb6028 3BLAKE2s (webkitgtk-2.34.5.tar.xz) = 4da7b6801b0a269f4625f8a1d2c1e418aba82febb1b5baba9993bb384df2c133
4SHA512 (webkitgtk-2.34.4.tar.xz) = 1a511ac6cb83cb602ecd8a56b3f6d00668de7fca74fcd5c6ce09e36af38b41742edc0bf572780867376aa27dd67d3aa451155f71d04bcdd3cba02c1f4f014df7 4SHA512 (webkitgtk-2.34.5.tar.xz) = a708e23bb6bcc6b281f1de35f4c56a5360b8212a3749d931f8a3c39402761f30d7524d0bddf4e6cfb1b2fc753df28853dceb476c432bac3c453e4b2123e7e9d5
5Size (webkitgtk-2.34.4.tar.xz) = 24388604 bytes 5Size (webkitgtk-2.34.5.tar.xz) = 24393772 bytes
6SHA1 (patch-Source_JavaScriptCore_Scripts_check-xcfilelists.sh) = f4f117e6c1cd8eb8e4905f74946e0367156ed528 6SHA1 (patch-Source_JavaScriptCore_Scripts_check-xcfilelists.sh) = f4f117e6c1cd8eb8e4905f74946e0367156ed528
7SHA1 (patch-Source_JavaScriptCore_Scripts_generate-unified-sources.sh) = 308a7c8f687253b4fc75de0c66016dd18666e697 7SHA1 (patch-Source_JavaScriptCore_Scripts_generate-unified-sources.sh) = 308a7c8f687253b4fc75de0c66016dd18666e697
8SHA1 (patch-Source_JavaScriptCore_assembler_ARM64Assembler.h) = 79c282ca90d0ba2ef4769da40d4648f5f709951b 8SHA1 (patch-Source_JavaScriptCore_assembler_ARM64Assembler.h) = 79c282ca90d0ba2ef4769da40d4648f5f709951b
9SHA1 (patch-Source_JavaScriptCore_assembler_ARMv7Assembler.h) = 70975aac175ec4131a4ed26a54dfe51e16ffb7cd 9SHA1 (patch-Source_JavaScriptCore_assembler_ARMv7Assembler.h) = 70975aac175ec4131a4ed26a54dfe51e16ffb7cd
10SHA1 (patch-Source_JavaScriptCore_heap_MarkedSpace.cpp) = 8f324091df41be96b011bcbeed5fd64c4464f010 10SHA1 (patch-Source_JavaScriptCore_heap_MarkedSpace.cpp) = 8f324091df41be96b011bcbeed5fd64c4464f010
11SHA1 (patch-Source_JavaScriptCore_jit_ExecutableAllocator.cpp) = 7f6c0c57d46478e83c4ff21dae2415f44085ba32 11SHA1 (patch-Source_JavaScriptCore_jit_ExecutableAllocator.cpp) = 7f6c0c57d46478e83c4ff21dae2415f44085ba32
12SHA1 (patch-Source_JavaScriptCore_offlineasm_arm64.rb) = 8c05dafa317667bbf55504d05eeb8ae06fba4e93 12SHA1 (patch-Source_JavaScriptCore_offlineasm_arm64.rb) = 8c05dafa317667bbf55504d05eeb8ae06fba4e93
13SHA1 (patch-Source_JavaScriptCore_runtime_MachineContext.h) = 3bf3c200917ba49573388081ea9c5f6c55605b9b 13SHA1 (patch-Source_JavaScriptCore_runtime_MachineContext.h) = 3bf3c200917ba49573388081ea9c5f6c55605b9b
14SHA1 (patch-Source_ThirdParty_ANGLE_src_common_third__party_smhasher_src_PMurHash.cpp) = 73dfe781efe7e8aa7d49094af8820a87c501818f 14SHA1 (patch-Source_ThirdParty_ANGLE_src_common_third__party_smhasher_src_PMurHash.cpp) = 73dfe781efe7e8aa7d49094af8820a87c501818f
15SHA1 (patch-Source_ThirdParty_ANGLE_src_compiler_translator_SymbolTable.h) = 10debffda84bc752ed434657a337a466aad19a3a 15SHA1 (patch-Source_ThirdParty_ANGLE_src_compiler_translator_SymbolTable.h) = 10debffda84bc752ed434657a337a466aad19a3a
16SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = ac07d4d8faa6dab606bcea31936340d260fcda33 16SHA1 (patch-Source_ThirdParty_gtest_include_gtest_internal_gtest-port.h) = ac07d4d8faa6dab606bcea31936340d260fcda33
17SHA1 (patch-Source_WTF_wtf_Assertions.h) = 427de20eba4627578087feaa7de2f23e80b9debf 17SHA1 (patch-Source_WTF_wtf_Assertions.h) = 427de20eba4627578087feaa7de2f23e80b9debf
18SHA1 (patch-Source_WTF_wtf_FileSystem.cpp) = 2fe7b7755646d9a1cc022aec3d01091766378aba 18SHA1 (patch-Source_WTF_wtf_FileSystem.cpp) = 2fe7b7755646d9a1cc022aec3d01091766378aba
19SHA1 (patch-Source_WTF_wtf_PlatformEnable.h) = eb5598c20c8453314daba7897066f15827bbede7 19SHA1 (patch-Source_WTF_wtf_PlatformEnable.h) = eb5598c20c8453314daba7897066f15827bbede7
20SHA1 (patch-Source_WTF_wtf_PlatformHave.h) = 1c96cc094a4f62f17d11890a17f164d214fa0f1f 20SHA1 (patch-Source_WTF_wtf_PlatformHave.h) = 1c96cc094a4f62f17d11890a17f164d214fa0f1f
21SHA1 (patch-Source_WTF_wtf_PlatformOS.h) = 80aa6ff20f10407d447fdb41606d4bb4989351aa 21SHA1 (patch-Source_WTF_wtf_PlatformOS.h) = 80aa6ff20f10407d447fdb41606d4bb4989351aa
22SHA1 (patch-Source_WTF_wtf_PlatformUse.h) = 595486b48e7d89378208c0a209a121ef136415e6 22SHA1 (patch-Source_WTF_wtf_PlatformUse.h) = 595486b48e7d89378208c0a209a121ef136415e6
23SHA1 (patch-Source_WTF_wtf_StackBounds.cpp) = 22a71daac8443f079ad8bcc7285cfd7319c972b3 23SHA1 (patch-Source_WTF_wtf_StackBounds.cpp) = 22a71daac8443f079ad8bcc7285cfd7319c972b3
24SHA1 (patch-Source_WebCore_Scripts_check-xcfilelists.sh) = b292baf2494bcd459d9af91386263123046c6615 24SHA1 (patch-Source_WebCore_Scripts_check-xcfilelists.sh) = b292baf2494bcd459d9af91386263123046c6615
25SHA1 (patch-Source_WebCore_Scripts_generate-unified-sources.sh) = 9b323aa1fa8e6e5599ac0a7ae08fbbed4348c70e 25SHA1 (patch-Source_WebCore_Scripts_generate-unified-sources.sh) = 9b323aa1fa8e6e5599ac0a7ae08fbbed4348c70e
26SHA1 (patch-Source_WebCore_crypto_algorithms_CryptoAlgorithmAES__GCM.cpp) = 03337c5eec54d6974dfea1766b14cb2c1b9f7750 26SHA1 (patch-Source_WebCore_crypto_algorithms_CryptoAlgorithmAES__GCM.cpp) = 03337c5eec54d6974dfea1766b14cb2c1b9f7750
27SHA1 (patch-Source_WebCore_inspector_InspectorFrontendHost.cpp) = daf6351a1a0b5a49592a2bb6db0d54620c7b09e3 27SHA1 (patch-Source_WebCore_inspector_InspectorFrontendHost.cpp) = daf6351a1a0b5a49592a2bb6db0d54620c7b09e3
28SHA1 (patch-Source_WebCore_platform_graphics_filters_FEMorphology.cpp) = 16b36d2d91fd7f43156b9ee09bcafd19602ebbd9 28SHA1 (patch-Source_WebCore_platform_graphics_filters_FEMorphology.cpp) = 16b36d2d91fd7f43156b9ee09bcafd19602ebbd9
29SHA1 (patch-Source_WebCore_platform_network_DNS.h) = dd9fb67aae0029c6a452e7d8f09eeed1235d5700 29SHA1 (patch-Source_WebCore_platform_network_DNS.h) = dd9fb67aae0029c6a452e7d8f09eeed1235d5700
30SHA1 (patch-Source_WebCore_rendering_RenderLayerBacking.h) = ecf722df1d1cca13573786b34fe1e3d85edf1e1e 30SHA1 (patch-Source_WebCore_rendering_RenderLayerBacking.h) = ecf722df1d1cca13573786b34fe1e3d85edf1e1e
31SHA1 (patch-Source_WebCore_rendering_shapes_RasterShape.cpp) = 551e47698dee50d097b11e3218f13bb3447edfea 31SHA1 (patch-Source_WebCore_rendering_shapes_RasterShape.cpp) = 551e47698dee50d097b11e3218f13bb3447edfea
32SHA1 (patch-Source_WebCore_rendering_shapes_ShapeOutsideInfo.cpp) = 3a4d9415e7d3ac78a948b9e7eb5e0377575835c3 32SHA1 (patch-Source_WebCore_rendering_shapes_ShapeOutsideInfo.cpp) = 3a4d9415e7d3ac78a948b9e7eb5e0377575835c3
33SHA1 (patch-Source_WebKit_CMakeLists.txt) = 86d11b8a1142a1ab267e412873cca4f8924aaae8 33SHA1 (patch-Source_WebKit_CMakeLists.txt) = 86d11b8a1142a1ab267e412873cca4f8924aaae8
34SHA1 (patch-Source_WebKit_NetworkProcess_cache_NetworkCacheFileSystem.cpp) = 14dfbee895aa7c70bf3b61b4dbb5bccd96d9583a 34SHA1 (patch-Source_WebKit_NetworkProcess_cache_NetworkCacheFileSystem.cpp) = 14dfbee895aa7c70bf3b61b4dbb5bccd96d9583a
35SHA1 (patch-Source_WebKit_PlatformGTK.cmake) = 61d2b4942b83d3f3c1b642d122f109ba90bbff9d 35SHA1 (patch-Source_WebKit_PlatformGTK.cmake) = 61d2b4942b83d3f3c1b642d122f109ba90bbff9d
36SHA1 (patch-Source_WebKit_Platform_IPC_unix_ConnectionUnix.cpp) = f2ee81bf200fe1fe1bc59cb571e4459163a9cbde 36SHA1 (patch-Source_WebKit_Platform_IPC_unix_ConnectionUnix.cpp) = f2ee81bf200fe1fe1bc59cb571e4459163a9cbde
37SHA1 (patch-Source_WebKit_Platform_classifier_ResourceLoadStatisticsClassifier.cpp) = 920376ec8697780637f376b2fff312b7e214a7f6 37SHA1 (patch-Source_WebKit_Platform_classifier_ResourceLoadStatisticsClassifier.cpp) = 920376ec8697780637f376b2fff312b7e214a7f6
38SHA1 (patch-Source_WebKit_Scripts_check-xcfilelists.sh) = 22cc5ba1ababc6395aa0ef467db0c27c2fbf6878 38SHA1 (patch-Source_WebKit_Scripts_check-xcfilelists.sh) = 22cc5ba1ababc6395aa0ef467db0c27c2fbf6878
39SHA1 (patch-Source_WebKit_Scripts_generate-unified-sources.sh) = def930cf3f706ac657b2f8835c8c0278ade8f663 39SHA1 (patch-Source_WebKit_Scripts_generate-unified-sources.sh) = def930cf3f706ac657b2f8835c8c0278ade8f663
40SHA1 (patch-Source_bmalloc_bmalloc_BPlatform.h) = 28d1f657fde427062a729b26398e96825082fc4d 40SHA1 (patch-Source_bmalloc_bmalloc_BPlatform.h) = 28d1f657fde427062a729b26398e96825082fc4d
41SHA1 (patch-Source_bmalloc_bmalloc_VMAllocate.h) = 22c23689fa79c930145068ed7966844bbf92a6a9 41SHA1 (patch-Source_bmalloc_bmalloc_VMAllocate.h) = 22c23689fa79c930145068ed7966844bbf92a6a9
42SHA1 (patch-Source_cmake_OptionsCommon.cmake) = b0f0070bb006081e5f609d07103cd8abf382d60e 42SHA1 (patch-Source_cmake_OptionsCommon.cmake) = b0f0070bb006081e5f609d07103cd8abf382d60e
43SHA1 (patch-Source_cmake_WebKitCommon.cmake) = 5f275eb75cf61b89a9168e4d72f9587dd5c732bc 43SHA1 (patch-Source_cmake_WebKitCommon.cmake) = 5f275eb75cf61b89a9168e4d72f9587dd5c732bc
44SHA1 (patch-Tools_TestWebKitAPI_Scripts_check-xcfilelists.sh) = 6e8327bf46150806910b21b298767f313e1eb3ce 44SHA1 (patch-Tools_TestWebKitAPI_Scripts_check-xcfilelists.sh) = 6e8327bf46150806910b21b298767f313e1eb3ce
45SHA1 (patch-Tools_TestWebKitAPI_Scripts_generate-unified-sources.sh) = 06747f279263558f05bb01c8da9c994a357ce74a 45SHA1 (patch-Tools_TestWebKitAPI_Scripts_generate-unified-sources.sh) = 06747f279263558f05bb01c8da9c994a357ce74a
46SHA1 (patch-aj) = ec60907df4336b755d1d1924c026b3041805f431 46SHA1 (patch-aj) = ec60907df4336b755d1d1924c026b3041805f431