Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 # -*- Mode: python; c-basic-offset: 4; 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 'Accessible.h',
9 'DocAccessible.h',
10 'HyperTextAccessible.h',
11 ]
13 UNIFIED_SOURCES += [
14 'Accessible.cpp',
15 'ApplicationAccessible.cpp',
16 'ARIAGridAccessible.cpp',
17 'BaseAccessibles.cpp',
18 'DocAccessible.cpp',
19 'FormControlAccessible.cpp',
20 'HyperTextAccessible.cpp',
21 'ImageAccessible.cpp',
22 'OuterDocAccessible.cpp',
23 'RootAccessible.cpp',
24 'TableCellAccessible.cpp',
25 'TextLeafAccessible.cpp',
26 ]
28 LOCAL_INCLUDES += [
29 '../../../layout/generic',
30 '../../../layout/xul',
31 '../base',
32 '../html',
33 '../xpcom',
34 '../xul',
35 ]
37 if CONFIG['MOZ_ENABLE_GTK']:
38 LOCAL_INCLUDES += [
39 '../atk',
40 ]
41 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
42 LOCAL_INCLUDES += [
43 '../windows/ia2',
44 '../windows/msaa',
45 ]
46 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
47 LOCAL_INCLUDES += [
48 '../mac',
49 ]
50 else:
51 LOCAL_INCLUDES += [
52 '../other',
53 ]
55 FINAL_LIBRARY = 'xul'