summaryrefslogtreecommitdiffstats
path: root/accessible/base/moz.build
blob: de8e75f0e1a7c57a3017f30b2890ec56bc05b8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# 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/.

GeneratedFile(
    "RelationType.h",
    script="/accessible/base/RelationTypeGen.py",
    entry_point="generate",
    inputs=["/accessible/interfaces/nsIAccessibleRelation.idl"],
)
GeneratedFile(
    "Role.h",
    script="/accessible/base/RoleHGen.py",
    entry_point="generate",
    inputs=["/accessible/interfaces/nsIAccessibleRole.idl"],
)

EXPORTS += ["AccEvent.h", "nsAccessibilityService.h"]

EXPORTS.mozilla.a11y += [
    "!RelationType.h",
    "!Role.h",
    "AccAttributes.h",
    "AccGroupInfo.h",
    "AccTypes.h",
    "CacheConstants.h",
    "DocManager.h",
    "FocusManager.h",
    "IDSet.h",
    "Platform.h",
    "SelectionManager.h",
    "States.h",
]

if CONFIG["MOZ_DEBUG"]:
    EXPORTS.mozilla.a11y += [
        "Logging.h",
    ]

UNIFIED_SOURCES += [
    "AccAttributes.cpp",
    "AccEvent.cpp",
    "AccGroupInfo.cpp",
    "AccIterator.cpp",
    "ARIAMap.cpp",
    "ARIAStateMap.cpp",
    "Asserts.cpp",
    "CachedTableAccessible.cpp",
    "DocManager.cpp",
    "EmbeddedObjCollector.cpp",
    "EventQueue.cpp",
    "EventTree.cpp",
    "Filters.cpp",
    "FocusManager.cpp",
    "NotificationController.cpp",
    "nsAccessibilityService.cpp",
    "nsAccUtils.cpp",
    "nsCoreUtils.cpp",
    "nsEventShell.cpp",
    "nsTextEquivUtils.cpp",
    "Pivot.cpp",
    "SelectionManager.cpp",
    "StyleInfo.cpp",
    "TextAttrs.cpp",
    "TextLeafRange.cpp",
    "TextRange.cpp",
    "TextUpdater.cpp",
    "TreeWalker.cpp",
]

if CONFIG["A11Y_LOG"]:
    UNIFIED_SOURCES += [
        "Logging.cpp",
    ]

LOCAL_INCLUDES += [
    "/accessible/generic",
    "/accessible/html",
    "/accessible/ipc",
    "/dom/base",
    "/dom/xul",
]

LOCAL_INCLUDES += [
    "/accessible/xpcom",
    "/accessible/xul",
    "/dom/base",
    "/ipc/chromium/src",
    "/layout/generic",
    "/layout/style",
    "/layout/xul",
    "/layout/xul/tree/",
]

if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
    LOCAL_INCLUDES += [
        "/accessible/atk",
        "/gfx/cairo/cairo/src",
    ]
elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
    LOCAL_INCLUDES += [
        "/accessible/windows/ia2",
        "/accessible/windows/msaa",
    ]
elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "cocoa":
    LOCAL_INCLUDES += [
        "/accessible/mac",
    ]
elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "android":
    LOCAL_INCLUDES += [
        "/accessible/android",
    ]
elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "uikit":
    LOCAL_INCLUDES += [
        "/accessible/ios",
    ]
else:
    LOCAL_INCLUDES += [
        "/accessible/other",
    ]

FINAL_LIBRARY = "xul"

include("/ipc/chromium/chromium-config.mozbuild")