| Summary: | [GTK][WPE] Remove the ATK implementation | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Carlos Garcia Campos <cgarcia> | ||||
| Component: | WebKitGTK | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | aboxhall, andresg_22, annulen, aperez, apinheiro, bugs-noreply, cfleizach, dmazzoni, ews-watchlist, gyuyoung.kim, jcraig, jdiggs, mcatanzaro, mifenton, ryuan.choi, samuel_white, sergio | ||||
| Priority: | P2 | Keywords: | Gtk | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| See Also: |
https://bugs.webkit.org/show_bug.cgi?id=ATSPI https://bugs.webkit.org/show_bug.cgi?id=238320 |
||||||
| Attachments: |
|
||||||
|
Description
Carlos Garcia Campos
2022-03-22 03:29:24 PDT
Created attachment 455358 [details]
Patch
Comment on attachment 455358 [details]
Patch
Nice to see so much code go away 💣️
Committed r291613 (?): <https://commits.webkit.org/r291613> I'm seeing a build failure:
In file included from /home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/WebKitWebViewAccessible.cpp:21:
/home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/WebKitWebViewAccessible.h:24:10: fatal error: atk/atk.h: No such file or directory
24 | #include <atk/atk.h>
| ^~~~~~~~~~~
compilation terminated.
That's when building with -DUSE_GTK4=ON. WebKitWebViewAccessible still depends on AtkSocket. Maybe with GTK 3 the include dirs are inherited from GTK?
(In reply to Michael Catanzaro from comment #4) > I'm seeing a build failure: > > In file included from > /home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/ > WebKitWebViewAccessible.cpp:21: > /home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/ > WebKitWebViewAccessible.h:24:10: fatal error: atk/atk.h: No such file or > directory > 24 | #include <atk/atk.h> > | ^~~~~~~~~~~ > compilation terminated. > > That's when building with -DUSE_GTK4=ON. WebKitWebViewAccessible still > depends on AtkSocket. Maybe with GTK 3 the include dirs are inherited from > GTK? This made the build complete here, but I didn't test further than that: https://o.perezdecastro.org/9fh9za0w.diff I'll look into submitting it as a proper patch later. (In reply to Adrian Perez from comment #5) > (In reply to Michael Catanzaro from comment #4) > > I'm seeing a build failure: > > > > In file included from > > /home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/ > > WebKitWebViewAccessible.cpp:21: > > /home/mcatanzaro/Projects/WebKit/Source/WebKit/UIProcess/API/glib/ > > WebKitWebViewAccessible.h:24:10: fatal error: atk/atk.h: No such file or > > directory > > 24 | #include <atk/atk.h> > > | ^~~~~~~~~~~ > > compilation terminated. > > > > That's when building with -DUSE_GTK4=ON. WebKitWebViewAccessible still > > depends on AtkSocket. Maybe with GTK 3 the include dirs are inherited from > > GTK? > > This made the build complete here, but I didn't test further than that: > > https://o.perezdecastro.org/9fh9za0w.diff > > I'll look into submitting it as a proper patch later. Here we go, bug #238320 |