Bug 1867925 - Mark some storage-access-api tests as intermittent after wpt-sync....
[gecko.git] / accessible / html / moz.build
blob3a246373da0afb72d8288dd004baa07b7b204bad
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 UNIFIED_SOURCES += [
8     "HTMLCanvasAccessible.cpp",
9     "HTMLElementAccessibles.cpp",
10     "HTMLFormControlAccessible.cpp",
11     "HTMLImageMapAccessible.cpp",
12     "HTMLLinkAccessible.cpp",
13     "HTMLListAccessible.cpp",
14     "HTMLSelectAccessible.cpp",
15     "HTMLTableAccessible.cpp",
18 LOCAL_INCLUDES += [
19     "/accessible/base",
20     "/accessible/generic",
21     "/accessible/xpcom",
22     "/layout/forms",
23     "/layout/generic",
24     "/layout/tables",
25     "/layout/xul",
28 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk":
29     LOCAL_INCLUDES += [
30         "/accessible/atk",
31     ]
32 elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
33     LOCAL_INCLUDES += [
34         "/accessible/windows/ia2",
35         "/accessible/windows/msaa",
36     ]
37 elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "cocoa":
38     LOCAL_INCLUDES += [
39         "/accessible/mac",
40     ]
41 elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "android":
42     LOCAL_INCLUDES += [
43         "/accessible/android",
44     ]
45 else:
46     LOCAL_INCLUDES += [
47         "/accessible/other",
48     ]
50 include("/ipc/chromium/chromium-config.mozbuild")
52 FINAL_LIBRARY = "xul"