Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / accessible / atk / moz.build
blob9b945da81a41392004f84ac5630d4c4b259253eb
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 += [
8     'AccessibleWrap.h',
9     'HyperTextAccessibleWrap.h',
12 SOURCES += [
13     'AccessibleWrap.cpp',
14     'ApplicationAccessibleWrap.cpp',
15     'AtkSocketAccessible.cpp',
16     'DocAccessibleWrap.cpp',
17     'nsMaiHyperlink.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',
29     'Platform.cpp',
30     'RootAccessibleWrap.cpp',
31     'UtilInterface.cpp',
34 LOCAL_INCLUDES += [
35     '/accessible/base',
36     '/accessible/generic',
37     '/accessible/html',
38     '/accessible/ipc',
39     '/accessible/xpcom',
40     '/accessible/xul',
41     '/other-licenses/atk-1.0',
44 FINAL_LIBRARY = 'xul'
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