Add a tests of some GVfs functions
[platform/upstream/glib.git] / gio / tests / Makefile.am
1
2 NULL =
3 BUILT_SOURCES =
4
5 include $(top_srcdir)/Makefile.decl
6
7 SUBDIRS = gdbus-object-manager-example
8
9 INCLUDES =                      \
10         -g                      \
11         $(gio_INCLUDES)         \
12         $(GLIB_DEBUG_FLAGS)     \
13         -I$(top_builddir)/gio   \
14         -I$(top_srcdir)/gio     \
15         $(DBUS1_CFLAGS)         \
16         -DSRCDIR=\""$(srcdir)"\"
17
18 noinst_PROGRAMS = $(TEST_PROGS) $(SAMPLE_PROGS)
19 noinst_DATA = $(MISC_STUFF)
20
21 progs_ldadd     =                                       \
22         $(top_builddir)/glib/libglib-2.0.la             \
23         $(top_builddir)/gthread/libgthread-2.0.la       \
24         $(top_builddir)/gobject/libgobject-2.0.la       \
25         $(top_builddir)/gio/libgio-2.0.la
26
27 TEST_PROGS +=                   \
28         io-stream               \
29         actions                 \
30         memory-input-stream     \
31         memory-output-stream    \
32         readwrite               \
33         g-file                  \
34         g-file-info             \
35         converter-stream        \
36         data-input-stream       \
37         data-output-stream      \
38         g-icon                  \
39         buffered-input-stream   \
40         buffered-output-stream  \
41         sleepy-stream           \
42         filter-streams          \
43         volumemonitor           \
44         simple-async-result     \
45         srvtarget               \
46         contexts                \
47         gsettings               \
48         gschema-compile         \
49         async-close-output-stream \
50         gdbus-addresses         \
51         network-address         \
52         gdbus-message           \
53         socket                  \
54         pollable                \
55         tls-certificate         \
56         tls-interaction         \
57         cancellable             \
58         vfs                     \
59         $(NULL)
60
61 if OS_UNIX
62 TEST_PROGS +=                   \
63         gdbus-close-pending     \
64         gdbus-connection        \
65         gdbus-connection-loss   \
66         gdbus-connection-slow   \
67         gdbus-names             \
68         gdbus-proxy             \
69         gdbus-proxy-threads     \
70         gdbus-proxy-well-known-name \
71         gdbus-introspection     \
72         gdbus-threading         \
73         gdbus-export            \
74         gdbus-error             \
75         gdbus-peer              \
76         gdbus-exit-on-close     \
77         gdbus-non-socket        \
78         gdbus-bz627724          \
79         appinfo                 \
80         contenttype             \
81         mimeapps                \
82         file                    \
83         $(NULL)
84 endif
85
86 SAMPLE_PROGS =                          \
87         resolver                        \
88         socket-server                   \
89         socket-client                   \
90         echo-server                     \
91         httpd                           \
92         send-data                       \
93         filter-cat                      \
94         gdbus-example-export            \
95         gdbus-example-own-name          \
96         gdbus-example-watch-name        \
97         gdbus-example-watch-proxy       \
98         gdbus-example-server            \
99         gdbus-example-subtree           \
100         gdbus-example-peer              \
101         gdbus-example-proxy-subclass    \
102         gdbus-connection-flush-helper   \
103         appinfo-test                    \
104         proxy                           \
105         gapplication-example-open       \
106         gapplication-example-cmdline    \
107         gapplication-example-cmdline2   \
108         gapplication-example-cmdline3   \
109         gapplication-example-actions    \
110         $(NULL)
111
112
113 if OS_UNIX
114 TEST_PROGS +=                   \
115         live-g-file             \
116         desktop-app-info        \
117         unix-fd                 \
118         unix-streams            \
119         gapplication            \
120         basic-application       \
121         gdbus-test-codegen      \
122         $(NULL)
123 SAMPLE_PROGS +=                                 \
124         gdbus-example-unix-fd-client            \
125         gdbus-example-objectmanager-server      \
126         gdbus-example-objectmanager-client      \
127         $(NULL)
128 endif
129
130 if OS_WIN32
131 TEST_PROGS += win32-streams
132 endif
133
134 io_stream_SOURCES = io-stream.c
135 io_stream_LDADD   = $(progs_ldadd)
136
137 actions_LDADD     = $(progs_ldadd)
138
139 memory_input_stream_SOURCES       = memory-input-stream.c
140 memory_input_stream_LDADD         = $(progs_ldadd)
141
142 memory_output_stream_SOURCES      = memory-output-stream.c
143 memory_output_stream_LDADD        = $(progs_ldadd)
144
145 g_file_SOURCES    = g-file.c
146 g_file_LDADD      = $(progs_ldadd)
147
148 readwrite_SOURCES         = readwrite.c
149 readwrite_LDADD   = $(progs_ldadd)
150
151 g_file_info_SOURCES     = g-file-info.c
152 g_file_info_LDADD       = $(progs_ldadd)
153
154 converter_stream_SOURCES        = converter-stream.c
155 converter_stream_LDADD          = $(progs_ldadd)
156
157 data_input_stream_SOURCES       = data-input-stream.c
158 data_input_stream_LDADD         = $(progs_ldadd)
159
160 data_output_stream_SOURCES      = data-output-stream.c
161 data_output_stream_LDADD        = $(progs_ldadd)
162
163 async_close_output_stream_SOURCES       = async-close-output-stream.c
164 async_close_output_stream_LDADD         = $(progs_ldadd)
165
166 filter_cat_SOURCES      = filter-cat.c
167 filter_cat_LDADD        = $(progs_ldadd)
168
169 g_icon_SOURCES  = g-icon.c
170 g_icon_LDADD    = $(progs_ldadd)
171
172 buffered_input_stream_SOURCES   = buffered-input-stream.c
173 buffered_input_stream_LDADD     = $(progs_ldadd)
174
175 buffered_output_stream_SOURCES  = buffered-output-stream.c
176 buffered_output_stream_LDADD    = $(progs_ldadd)
177
178 live_g_file_SOURCES       = live-g-file.c
179 live_g_file_LDADD         = $(progs_ldadd)
180
181 desktop_app_info_SOURCES  = desktop-app-info.c
182 desktop_app_info_LDADD    = $(progs_ldadd)
183
184 unix_streams_SOURCES      = unix-streams.c
185 unix_streams_LDADD        = $(progs_ldadd) \
186         $(top_builddir)/gthread/libgthread-2.0.la
187
188 win32_streams_SOURCES     = win32-streams.c
189 win32_streams_LDADD       = $(progs_ldadd) \
190         $(top_builddir)/gthread/libgthread-2.0.la
191
192 unix_fd_SOURCES   = unix-fd.c
193 unix_fd_LDADD     = $(progs_ldadd)
194
195 simple_async_result_SOURCES     = simple-async-result.c
196 simple_async_result_LDADD       = $(progs_ldadd)
197
198 sleepy_stream_SOURCES           = sleepy-stream.c
199 sleepy_stream_LDADD             = $(progs_ldadd)
200
201 filter_streams_SOURCES          = filter-streams.c
202 filter_streams_LDADD            = $(progs_ldadd)
203
204 volumemonitor_SOURCES           = volumemonitor.c
205 volumemonitor_LDADD             = $(progs_ldadd)
206
207 resolver_SOURCES          = resolver.c
208 resolver_LDADD            = $(progs_ldadd) \
209         $(top_builddir)/gthread/libgthread-2.0.la
210
211 socket_server_SOURCES     = socket-server.c
212 socket_server_LDADD       = $(progs_ldadd) \
213         $(top_builddir)/gthread/libgthread-2.0.la
214
215 socket_client_SOURCES     = socket-client.c \
216                             gtlsconsoleinteraction.c \
217                             gtlsconsoleinteraction.h
218 socket_client_LDADD       = $(progs_ldadd) \
219         $(top_builddir)/gthread/libgthread-2.0.la
220
221 echo_server_SOURCES       = echo-server.c
222 echo_server_LDADD         = $(progs_ldadd) \
223         $(top_builddir)/gthread/libgthread-2.0.la
224
225 httpd_SOURCES             = httpd.c
226 httpd_LDADD               = $(progs_ldadd) \
227         $(top_builddir)/gthread/libgthread-2.0.la
228
229 send_data_SOURCES         = send-data.c
230 send_data_LDADD           = $(progs_ldadd) \
231         $(top_builddir)/gthread/libgthread-2.0.la
232
233 srvtarget_SOURCES         = srvtarget.c
234 srvtarget_LDADD           = $(progs_ldadd)
235
236 network_address_SOURCE    = network-address.c
237 network_address_LDADD     = $(progs_ldadd)
238
239 socket_SOURCE             = socket.c
240 socket_LDADD              = $(progs_ldadd)
241
242 pollable_SOURCE           = pollable.c
243 pollable_LDADD            = $(progs_ldadd)
244
245 contexts_SOURCES          = contexts.c
246 contexts_LDADD            = $(progs_ldadd) \
247         $(top_builddir)/gthread/libgthread-2.0.la
248
249 gsettings_SOURCES         = gsettings.c
250 gsettings_LDADD           = $(progs_ldadd)
251
252 gschema_compile_SOURCES   = gschema-compile.c
253 gschema_compile_LDADD     = $(progs_ldadd)
254
255 if HAVE_DBUS1
256 TEST_PROGS += gdbus-serialization
257 gdbus_serialization_SOURCES = gdbus-serialization.c gdbus-tests.h gdbus-tests.c
258 gdbus_serialization_CFLAGS = $(DBUS1_CFLAGS)
259 gdbus_serialization_LDADD = $(progs_ldadd) $(DBUS1_LIBS)
260 endif
261
262 gdbus_addresses_SOURCES = gdbus-addresses.c
263 gdbus_addresses_LDADD = $(progs_ldadd)
264
265 gdbus_bz627724_SOURCES = gdbus-bz627724.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
266 gdbus_bz627724_LDADD = $(progs_ldadd)
267
268 gdbus_close_pending_SOURCES = gdbus-close-pending.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
269 gdbus_close_pending_LDADD = $(progs_ldadd)
270
271 if OS_UNIX
272 gdbus-test-codegen-generated.h gdbus-test-codegen-generated.c : test-codegen.xml Makefile $(top_builddir)/gio/gdbus-2.0/codegen/gdbus-codegen
273         $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
274                 UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
275                 $(PYTHON) $(top_builddir)/gio/gdbus-2.0/codegen/gdbus-codegen \
276                 --interface-prefix org.project. \
277                 --generate-c-code gdbus-test-codegen-generated \
278                 --c-generate-object-manager \
279                 --c-namespace Foo_iGen \
280                 --generate-docbook gdbus-test-codegen-generated-doc \
281                 --annotate "org.project.Bar" Key1 Value1 \
282                 --annotate "org.project.Bar" org.gtk.GDBus.Internal Value2 \
283                 --annotate "org.project.Bar.HelloWorld()" Key3 Value3 \
284                 --annotate "org.project.Bar::TestSignal" Key4 Value4 \
285                 --annotate "org.project.Bar:ay" Key5 Value5 \
286                 --annotate "org.project.Bar.TestPrimitiveTypes()[val_int32]" Key6 Value6 \
287                 --annotate "org.project.Bar.TestPrimitiveTypes()[ret_uint32]" Key7 Value7 \
288                 --annotate "org.project.Bar::TestSignal[array_of_strings]" Key8 Value8 \
289                 $(srcdir)/test-codegen.xml \
290                 $(NULL)
291
292 BUILT_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
293
294 gdbus_test_codegen_SOURCES  = gdbus-test-codegen.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
295 gdbus_test_codegen_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
296 gdbus_test_codegen_LDADD = $(progs_ldadd)
297 endif # OS_UNIX
298
299 gdbus_connection_SOURCES = gdbus-connection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
300 gdbus_connection_LDADD = $(progs_ldadd)
301
302 gdbus_connection_loss_SOURCES = gdbus-connection-loss.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
303 gdbus_connection_loss_LDADD = $(progs_ldadd)
304
305 gdbus_connection_slow_SOURCES = gdbus-connection-slow.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
306 gdbus_connection_slow_LDADD = $(progs_ldadd)
307
308 gdbus_message_SOURCES = gdbus-message.c
309 gdbus_message_LDADD = $(progs_ldadd)
310
311 gdbus_names_SOURCES = gdbus-names.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
312 gdbus_names_LDADD = $(progs_ldadd)
313
314 gdbus_proxy_SOURCES = gdbus-proxy.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
315 gdbus_proxy_LDADD = $(progs_ldadd)
316
317 gdbus_proxy_threads_SOURCES = gdbus-proxy-threads.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
318 gdbus_proxy_threads_LDADD = $(progs_ldadd)
319
320 gdbus_proxy_well_known_name_SOURCES = gdbus-proxy-well-known-name.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
321 gdbus_proxy_well_known_name_LDADD = $(progs_ldadd)
322
323 gdbus_introspection_SOURCES = gdbus-introspection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
324 gdbus_introspection_LDADD = $(progs_ldadd)
325
326 gdbus_threading_SOURCES = gdbus-threading.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
327 gdbus_threading_LDADD = $(progs_ldadd)
328
329 gdbus_export_SOURCES = gdbus-export.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
330 gdbus_export_LDADD = $(progs_ldadd)
331
332 gdbus_error_SOURCES = gdbus-error.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
333 gdbus_error_LDADD = $(progs_ldadd)
334
335 gdbus_peer_SOURCES = gdbus-peer.c gdbus-tests.h gdbus-tests.c
336 gdbus_peer_LDADD = $(progs_ldadd)
337
338 gdbus_non_socket_SOURCES = gdbus-non-socket.c gdbus-tests.h gdbus-tests.c
339 gdbus_non_socket_LDADD = $(progs_ldadd)
340
341 gdbus_exit_on_close_SOURCES = gdbus-exit-on-close.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
342 gdbus_exit_on_close_LDADD = $(progs_ldadd)
343
344 gdbus_example_watch_name_SOURCES = gdbus-example-watch-name.c
345 gdbus_example_watch_name_LDADD   = $(progs_ldadd)
346
347 gdbus_example_watch_proxy_SOURCES = gdbus-example-watch-proxy.c
348 gdbus_example_watch_proxy_LDADD   = $(progs_ldadd)
349
350 gdbus_example_own_name_SOURCES = gdbus-example-own-name.c
351 gdbus_example_own_name_LDADD   = $(progs_ldadd)
352
353 gdbus_example_server_SOURCES = gdbus-example-server.c
354 gdbus_example_server_LDADD   = $(progs_ldadd)
355
356 gdbus_example_unix_fd_client_SOURCES = gdbus-example-unix-fd-client.c
357 gdbus_example_unix_fd_client_LDADD   = $(progs_ldadd)
358
359 gdbus_example_subtree_SOURCES = gdbus-example-subtree.c
360 gdbus_example_subtree_LDADD   = $(progs_ldadd)
361
362 gdbus_example_peer_SOURCES = gdbus-example-peer.c
363 gdbus_example_peer_LDADD   = $(progs_ldadd)
364
365 gdbus_example_proxy_subclass_SOURCES = gdbus-example-proxy-subclass.c
366 gdbus_example_proxy_subclass_LDADD   = $(progs_ldadd)
367
368 gdbus_example_export_SOURCES = gdbus-example-export.c
369 gdbus_example_export_LDADD   = $(progs_ldadd)
370
371 gdbus_connection_flush_helper_SOURCES = gdbus-connection-flush-helper.c
372 gdbus_connection_flush_helper_LDADD = $(progs_ldadd)
373
374 appinfo_SOURCES = appinfo.c
375 appinfo_LDADD   = $(progs_ldadd)
376
377 appinfo_test_SOURCES = appinfo-test.c
378 appinfo_test_LDADD   = $(progs_ldadd)
379
380 contenttype_SOURCES = contenttype.c
381 contenttype_LDADD   = $(progs_ldadd)
382
383 mimeapps_SOURCES = mimeapps.c
384 mimeapps_LDADD   = $(progs_ldadd)
385
386 file_SOURCES = file.c
387 file_LDADD   = $(progs_ldadd)
388
389 gapplication_SOURCES = gapplication.c gdbus-sessionbus.c
390 gapplication_LDADD = $(progs_ldadd)
391
392 basic_application_LDADD = $(progs_ldadd)
393
394 gapplication_example_open_SOURCES = gapplication-example-open.c
395 gapplication_example_open_LDADD   = $(progs_ldadd)
396
397 gapplication_example_cmdline_SOURCES = gapplication-example-cmdline.c
398 gapplication_example_cmdline_LDADD   = $(progs_ldadd)
399
400 gapplication_example_cmdline2_SOURCES = gapplication-example-cmdline2.c
401 gapplication_example_cmdline2_LDADD   = $(progs_ldadd)
402
403 gapplication_example_cmdline3_SOURCES = gapplication-example-cmdline3.c
404 gapplication_example_cmdline3_LDADD   = $(progs_ldadd)
405
406 gapplication_example_actions_SOURCES = gapplication-example-actions.c
407 gapplication_example_actions_LDADD   = $(progs_ldadd)
408
409 schema_tests = \
410         schema-tests/array-default-not-in-choices.gschema.xml           \
411         schema-tests/bad-choice.gschema.xml                             \
412         schema-tests/bad-key.gschema.xml                                \
413         schema-tests/bad-key2.gschema.xml                               \
414         schema-tests/bad-key3.gschema.xml                               \
415         schema-tests/bad-key4.gschema.xml                               \
416         schema-tests/bad-type.gschema.xml                               \
417         schema-tests/bare-alias.gschema.xml                             \
418         schema-tests/choice-alias.gschema.xml                           \
419         schema-tests/choice-bad.gschema.xml                             \
420         schema-tests/choice-badtype.gschema.xml                         \
421         schema-tests/choice-invalid-alias.gschema.xml                   \
422         schema-tests/choice-missing-value.gschema.xml                   \
423         schema-tests/choice-shadowed-alias.gschema.xml                  \
424         schema-tests/choice-upside-down.gschema.xml                     \
425         schema-tests/choice.gschema.xml                                 \
426         schema-tests/choices-wrong-type.gschema.xml                     \
427         schema-tests/default-in-aliases.gschema.xml                     \
428         schema-tests/default-not-in-choices.gschema.xml                 \
429         schema-tests/default-out-of-range.gschema.xml                   \
430         schema-tests/empty-key.gschema.xml                              \
431         schema-tests/enum-with-aliases.gschema.xml                      \
432         schema-tests/enum-with-bad-default.gschema.xml                  \
433         schema-tests/enum-with-chained-alias.gschema.xml                \
434         schema-tests/enum-with-choice.gschema.xml                       \
435         schema-tests/enum-with-invalid-alias.gschema.xml                \
436         schema-tests/enum-with-repeated-alias.gschema.xml               \
437         schema-tests/enum-with-repeated-nick.gschema.xml                \
438         schema-tests/enum-with-repeated-value.gschema.xml               \
439         schema-tests/enum-with-shadow-alias.gschema.xml                 \
440         schema-tests/enum.gschema.xml                                   \
441         schema-tests/flags-aliased-default.gschema.xml                  \
442         schema-tests/flags-bad-default.gschema.xml                      \
443         schema-tests/flags-more-than-one-bit.gschema.xml                \
444         schema-tests/flags-with-enum-attr.gschema.xml                   \
445         schema-tests/flags-with-enum-tag.gschema.xml                    \
446         schema-tests/extend-and-shadow-indirect.gschema.xml             \
447         schema-tests/extend-and-shadow.gschema.xml                      \
448         schema-tests/extend-missing.gschema.xml                         \
449         schema-tests/extend-nonlist.gschema.xml                         \
450         schema-tests/extend-self.gschema.xml                            \
451         schema-tests/extend-wrong-list-indirect.gschema.xml             \
452         schema-tests/extend-wrong-list.gschema.xml                      \
453         schema-tests/extending.gschema.xml                              \
454         schema-tests/from-docs.gschema.xml                              \
455         schema-tests/incomplete-list.gschema.xml                        \
456         schema-tests/inherit-gettext-domain.gschema.xml                 \
457         schema-tests/invalid-path.gschema.xml                           \
458         schema-tests/key-in-list-indirect.gschema.xml                   \
459         schema-tests/key-in-list.gschema.xml                            \
460         schema-tests/list-of-missing.gschema.xml                        \
461         schema-tests/missing-quotes.gschema.xml                         \
462         schema-tests/no-default.gschema.xml                             \
463         schema-tests/overflow.gschema.xml                               \
464         schema-tests/override-missing.gschema.xml                       \
465         schema-tests/override-range-error.gschema.xml                   \
466         schema-tests/override-then-key.gschema.xml                      \
467         schema-tests/override-twice.gschema.xml                         \
468         schema-tests/override-type-error.gschema.xml                    \
469         schema-tests/override.gschema.xml                               \
470         schema-tests/range-badtype.gschema.xml                          \
471         schema-tests/range-default-high.gschema.xml                     \
472         schema-tests/range-default-low.gschema.xml                      \
473         schema-tests/range-high-default.gschema.xml                     \
474         schema-tests/range-low-default.gschema.xml                      \
475         schema-tests/range-missing-max.gschema.xml                      \
476         schema-tests/range-missing-min.gschema.xml                      \
477         schema-tests/range-parse-error.gschema.xml                      \
478         schema-tests/range-wrong-type.gschema.xml                       \
479         schema-tests/range.gschema.xml                                  \
480         schema-tests/wrong-category.gschema.xml
481
482 proxy_SOURCES = proxy.c
483 proxy_LDADD   = $(progs_ldadd) \
484         $(top_builddir)/gthread/libgthread-2.0.la
485
486 tls_certificate_SOURCES = tls-certificate.c gtesttlsbackend.c gtesttlsbackend.h
487 tls_certificate_LDADD   = $(progs_ldadd)
488
489 tls_interaction_LDADD = $(progs_ldadd)
490
491 cancellable_LDADD = $(progs_ldadd)
492
493 vfs_LDADD = $(progs_ldadd)
494
495 # -----------------------------------------------------------------------------
496
497 if OS_UNIX
498 gdbus_example_objectmanager_server_SOURCES  = gdbus-example-objectmanager-server.c
499 gdbus_example_objectmanager_server_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
500 gdbus_example_objectmanager_server_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
501
502 gdbus_example_objectmanager_client_SOURCES  = gdbus-example-objectmanager-client.c
503 gdbus_example_objectmanager_client_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
504 gdbus_example_objectmanager_client_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
505 endif OS_UNIX
506
507 # -----------------------------------------------------------------------------
508
509 EXTRA_DIST += \
510         socket-common.c                 \
511         org.gtk.test.gschema            \
512         org.gtk.test.gschema.xml        \
513         testenum.h                      \
514         enums.xml.template              \
515         de.po                           \
516         $(schema_tests)                 \
517         appinfo-test.desktop            \
518         appinfo-test2.desktop           \
519         appinfo-test-gnome.desktop      \
520         appinfo-test-notgnome.desktop   \
521         gdbus-testserver.py             \
522         test-codegen.xml                \
523         cert1.pem                       \
524         cert2.pem                       \
525         cert3.pem                       \
526         key.pem                         \
527         key-cert.pem                    \
528         cert-key.pem                    \
529         cert-list.pem                   \
530         nothing.pem                     \
531         $(NULL)
532
533 MISC_STUFF = test.mo
534
535 test.mo: de.po
536         $(MSGFMT) -o test.mo $(srcdir)/de.po; \
537         $(MKDIR_P) de/LC_MESSAGES; \
538         cp -f test.mo de/LC_MESSAGES
539
540 CLEANFILES = gdbus-test-codegen-generated.[ch] gdbus-test-codegen-generated-doc-*.xml
541
542 DISTCLEANFILES = \
543         applications/mimeinfo.cache     \
544         org.gtk.test.enums.xml          \
545         de/LC_MESSAGES/test.mo          \
546         test.mo                         \
547         gsettings.store                 \
548         gschemas.compiled
549
550 distclean-local:
551         rm -r xdgdatahome xdgdatadir