1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 EXPORTS.mozilla.a11y += [
9 'HyperTextAccessibleWrap.h',
14 'ApplicationAccessibleWrap.cpp',
15 'AtkSocketAccessible.cpp',
16 'DocAccessibleWrap.cpp',
18 'nsMaiInterfaceAction.cpp',
19 'nsMaiInterfaceComponent.cpp',
20 'nsMaiInterfaceDocument.cpp',
21 'nsMaiInterfaceEditableText.cpp',
22 'nsMaiInterfaceHyperlinkImpl.cpp',
23 'nsMaiInterfaceHypertext.cpp',
24 'nsMaiInterfaceImage.cpp',
25 'nsMaiInterfaceSelection.cpp',
26 'nsMaiInterfaceTable.cpp',
27 'nsMaiInterfaceText.cpp',
28 'nsMaiInterfaceValue.cpp',
30 'RootAccessibleWrap.cpp',
36 '/accessible/generic',
41 '/other-licenses/atk-1.0',
46 if CONFIG['MOZ_ENABLE_GTK']:
47 CFLAGS += CONFIG['TK_CFLAGS']
48 CXXFLAGS += CONFIG['TK_CFLAGS']
50 if CONFIG['MOZ_ENABLE_DBUS']:
51 CXXFLAGS += CONFIG['MOZ_DBUS_CFLAGS']
53 include('/ipc/chromium/chromium-config.mozbuild')
55 if CONFIG['CLANG_CXX']:
56 # Suppress clang warning about unused function from gobject's RTTI macros.
57 CXXFLAGS += ['-Wno-unused-function']
59 FAIL_ON_WARNINGS = True