libgnt/libgnt

Set the default branch in our reviewboardrc file
release-2.x.y
2020-12-19, Gary Kramlich
4315c5a6d1d4
Set the default branch in our reviewboardrc file

Testing Done:
Verified that the branch was set properly when I created this review request.

Reviewed at https://reviews.imfreedom.org/r/276/
DOC_MODULE = 'libgnt'
# Header files or dirs to ignore when scanning. Use base file/dir names
ignore_hfiles = [
'test',
'wms',
'gntinternal.h',
'gnt-skel.h'
]
# Extra options to supply to gtkdoc-scan.
scan_args = [
'--deprecated-guards=GNT_DISABLE_DEPRECATED',
'--rebuild-types',
'--rebuild-sections',
'--ignore-headers=' + ' '.join(ignore_hfiles),
]
# Extra options to supply to gtkdoc-mkdb.
mkdb_args = [
'--ignore-files=' + ' '.join(ignore_hfiles),
]
configure_file(
input : 'version.xml.in',
output : 'version.xml',
configuration : gnt_config)
gnome.gtkdoc(DOC_MODULE,
main_xml : DOC_MODULE + '-docs.xml',
namespace : 'gnt',
src_dir : libgnt_inc,
dependencies : libgnt_dep,
install : true,
scan_args : scan_args,
mkdb_args : mkdb_args,
gobject_typesfile : DOC_MODULE + '.types')