Bug 1758984 - add status to mozlog crash so group summary is not marked as OK. r...
[gecko.git] / accessible / atk / moz.build
blobce6be5a3faf413b409610dfb8f9ff6e9a85e8b3a
1 # -*- Mode: python; 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     "DOMtoATK.cpp",
18     "nsMaiHyperlink.cpp",
19     "nsMaiInterfaceAction.cpp",
20     "nsMaiInterfaceComponent.cpp",
21     "nsMaiInterfaceDocument.cpp",
22     "nsMaiInterfaceEditableText.cpp",
23     "nsMaiInterfaceHyperlinkImpl.cpp",
24     "nsMaiInterfaceHypertext.cpp",
25     "nsMaiInterfaceImage.cpp",
26     "nsMaiInterfaceSelection.cpp",
27     "nsMaiInterfaceTable.cpp",
28     "nsMaiInterfaceTableCell.cpp",
29     "nsMaiInterfaceText.cpp",
30     "nsMaiInterfaceValue.cpp",
31     "Platform.cpp",
32     "RootAccessibleWrap.cpp",
33     "UtilInterface.cpp",
36 LOCAL_INCLUDES += [
37     "/accessible/base",
38     "/accessible/generic",
39     "/accessible/html",
40     "/accessible/ipc",
41     "/accessible/ipc/other",
42     "/accessible/xpcom",
43     "/accessible/xul",
44     "/layout/generic",
45     "/other-licenses/atk-1.0",
46     "/widget",
47     "/widget/gtk",
50 FINAL_LIBRARY = "xul"
52 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
53     CFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
54     CXXFLAGS += CONFIG["MOZ_GTK3_CFLAGS"]
56 if CONFIG["MOZ_ENABLE_DBUS"]:
57     CXXFLAGS += CONFIG["MOZ_DBUS_CFLAGS"]
59 include("/ipc/chromium/chromium-config.mozbuild")
61 if CONFIG["CC_TYPE"] in ("clang", "gcc"):
62     # Used in G_DEFINE_TYPE_EXTENDED macro, probably fixed in newer glib /
63     # gobject headers. See bug 1243331 comment 3.
64     CXXFLAGS += [
65         "-Wno-error=unused-function",
66         "-Wno-unused-local-typedefs",
67     ]