forked from AuroraMiddleware/gtk
374bd21340
Use the actions from the GtkActionMuxer of each widget to populate the list of actions available.
25 lines
456 B
Meson
25 lines
456 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',
|
|
'gtkatspicontext.c',
|
|
'gtkatspieditabletext.c',
|
|
'gtkatspipango.c',
|
|
'gtkatspiroot.c',
|
|
'gtkatspiselection.c',
|
|
'gtkatspitextbuffer.c',
|
|
'gtkatspitext.c',
|
|
'gtkatspiutils.c',
|
|
'gtkatspivalue.c',
|
|
])
|
|
endif
|