diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-06-09 12:44:46 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2014-06-09 12:44:46 +0800 |
commit | e26bdbda9b23d95fe6fbcceb54dee2140dd78cef (patch) | |
tree | 8bad7f2548cfab140b4fb862b9027413c4c67cf5 /build | |
parent | bdc9d17edcaaef979a15748948c9b65c9105c328 (diff) | |
download | gtk+-e26bdbda9b23d95fe6fbcceb54dee2140dd78cef.tar.gz |
MSVC Builds: Update Introspection Build
The a11y headers are now listed with the main Makefile.am of GTK, and
GDK introduced deprecated headers, so we need to account for them for the
build of the introspection files.
Diffstat (limited to 'build')
-rw-r--r-- | build/gen-file-list-gtk.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/gen-file-list-gtk.py b/build/gen-file-list-gtk.py index f25cf4ae50..045f860e9d 100644 --- a/build/gen-file-list-gtk.py +++ b/build/gen-file-list-gtk.py @@ -14,7 +14,7 @@ def gen_gdk_filelist(srcroot, subdir, dest): vars = read_vars_from_AM(os.path.join(srcroot, subdir, 'Makefile.am'), vars = {}, conds = {}, - filters = ['gdk_public_h_sources', 'gdk_c_sources']) + filters = ['gdk_h_sources', 'gdk_c_sources']) vars['gdk_enums'] = 'gdkenumtypes.c gdkenumtypes.h' @@ -49,6 +49,7 @@ def gen_gtk_filelist(srcroot, subdir, dest): 'USE_X11': False, 'USE_EXTERNAL_ICON_CACHE': False}, filters = ['gtkinclude_HEADERS', + 'a11yinclude_HEADERS', 'deprecatedinclude_HEADERS', 'gtk_base_c_sources', 'gtk_clipboard_dnd_c_sources']) @@ -56,6 +57,7 @@ def gen_gtk_filelist(srcroot, subdir, dest): vars['gtk_other_src'] = 'gtkprintoperation-win32.c gtktypebuiltins.h gtktypebuiltins.c' files = vars['gtkinclude_HEADERS'].split() + \ + vars['a11yinclude_HEADERS'].split() + \ vars['deprecatedinclude_HEADERS'].split() + \ vars['gtk_base_c_sources'].split() + \ vars['gtk_clipboard_dnd_c_sources'].split() + \ |