Bug 1700051: part 36) Reduce accessibility of `SoftText::mBegin` to `private`. r...
[gecko.git] / accessible / atk / moz.build
blob67fb1b9bc2c76a31412a6ba4666ade00b77eec25
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     "/other-licenses/atk-1.0",
47 FINAL_LIBRARY = "xul"
49 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
50     CFLAGS += CONFIG["TK_CFLAGS"]
51     CXXFLAGS += CONFIG["TK_CFLAGS"]
53 if CONFIG["MOZ_ENABLE_DBUS"]:
54     CXXFLAGS += CONFIG["MOZ_DBUS_CFLAGS"]
56 include("/ipc/chromium/chromium-config.mozbuild")
58 if CONFIG["CC_TYPE"] in ("clang", "gcc"):
59     # Used in G_DEFINE_TYPE_EXTENDED macro, probably fixed in newer glib /
60     # gobject headers. See bug 1243331 comment 3.
61     CXXFLAGS += [
62         "-Wno-error=unused-function",
63         "-Wno-error=shadow",
64         "-Wno-unused-local-typedefs",
65     ]