gtk2/gtk/a11y/meson.build
Matthias Clasen 8e4f8a45a9 atspi: Implement Component
Implement the non-questionable parts of the Component interface
for accessibles which are widgets.

This does not include:
 - global coordinates
 - setters
 - scrolling
 - alpha, layers, zorder, and the like
2020-10-19 12:19:55 -04:00

26 lines
483 B
Meson

gtk_a11y_src = []
gtk_a11y_backends = []
if os_unix
gtk_a11y_backends += 'atspi'
endif
if gtk_a11y_backends.contains('atspi')
subdir('atspi')
gtk_a11y_src += files([
'gtkatspiaction.c',
'gtkatspicache.c',
'gtkatspicomponent.c',
'gtkatspicontext.c',
'gtkatspieditabletext.c',
'gtkatspipango.c',
'gtkatspiroot.c',
'gtkatspiselection.c',
'gtkatspitextbuffer.c',
'gtkatspitext.c',
'gtkatspiutils.c',
'gtkatspivalue.c',
])
endif