2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:17 -08:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-03-19 11:47:00 -07:00
|
|
|
MODULE = 'accessibility'
|
|
|
|
|
2013-04-16 12:24:43 -07:00
|
|
|
# Please keep this list in sync with the Makefile.in until the rest of that file
|
|
|
|
# is ported over.
|
|
|
|
midl_interfaces = [
|
|
|
|
'Accessible2',
|
2013-05-18 18:21:42 -07:00
|
|
|
'Accessible2_2',
|
2013-04-16 12:24:43 -07:00
|
|
|
'AccessibleAction',
|
|
|
|
'AccessibleApplication',
|
|
|
|
'AccessibleComponent',
|
2013-05-18 18:21:42 -07:00
|
|
|
'AccessibleDocument',
|
2013-04-16 12:24:43 -07:00
|
|
|
'AccessibleEditableText',
|
|
|
|
'AccessibleHyperlink',
|
|
|
|
'AccessibleHypertext',
|
2013-05-18 18:21:42 -07:00
|
|
|
'AccessibleHypertext2',
|
2013-04-16 12:24:43 -07:00
|
|
|
'AccessibleImage',
|
|
|
|
'AccessibleRelation',
|
|
|
|
'AccessibleTable',
|
|
|
|
'AccessibleTable2',
|
|
|
|
'AccessibleTableCell',
|
|
|
|
'AccessibleText',
|
2013-05-18 18:21:42 -07:00
|
|
|
'AccessibleText2',
|
2013-04-16 12:24:43 -07:00
|
|
|
'AccessibleValue',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Please keep this list in sync with the Makefile.in until the rest of that file
|
|
|
|
# is ported over.
|
|
|
|
midl_enums = [
|
|
|
|
'AccessibleEventId',
|
|
|
|
'AccessibleRole',
|
|
|
|
'AccessibleStates',
|
|
|
|
'IA2CommonTypes',
|
|
|
|
]
|
|
|
|
|
2013-05-16 15:37:18 -07:00
|
|
|
headers = ['%s.h' % x for x in midl_enums]
|
|
|
|
interfaces_h = ['%s.h' % x for x in midl_interfaces]
|
|
|
|
interfaces_c = ['%s_i.c' % x for x in midl_interfaces]
|
|
|
|
|
|
|
|
# The underscore throws off sorting and EXPORTS expects sorted lists.
|
|
|
|
interfaces_c.sort()
|
|
|
|
|
|
|
|
EXPORTS += headers
|
|
|
|
EXPORTS += interfaces_h
|
|
|
|
EXPORTS += interfaces_c
|
2013-06-17 12:21:01 -07:00
|
|
|
|
|
|
|
LIBRARY_NAME = 'IA2Marshal'
|
|
|
|
|