Bug 1577282 - Part 1: Move the requires before the constants and format the markup...
[gecko.git] / accessible / moz.build
blobd38100279692667bea4cde29a407c7ac391f0c89
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 toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
9 if toolkit == 'gtk':
10     DIRS += ['atk']
11 elif toolkit == 'windows':
12     DIRS += ['windows']
13 elif toolkit == 'cocoa':
14     DIRS += ['mac']
15 elif toolkit == 'android':
16     DIRS += ['android']
17 else:
18     DIRS += ['other']
20 DIRS += [ 'aom',
21           'base',
22           'generic',
23           'html',
24           'interfaces',
25           'ipc',
26           'jsat',
27           'xpcom'
30 if CONFIG['MOZ_XUL']:
31     DIRS += ['xul']
33 TEST_DIRS += ['tests/mochitest']
35 BROWSER_CHROME_MANIFESTS += [
36   'tests/browser/bounds/browser.ini',
37   'tests/browser/browser.ini',
38   'tests/browser/e10s/browser.ini',
39   'tests/browser/events/browser.ini',
40   'tests/browser/general/browser.ini',
41   'tests/browser/scroll/browser.ini',
42   'tests/browser/states/browser.ini',
43   'tests/browser/tree/browser.ini'
46 with Files("**"):
47     BUG_COMPONENT = ("Core", "Disability Access APIs")