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 UNIFIED_SOURCES += [
8 'XULAlertAccessible.cpp',
9 'XULColorPickerAccessible.cpp',
10 'XULComboboxAccessible.cpp',
11 'XULElementAccessibles.cpp',
12 'XULFormControlAccessible.cpp',
13 'XULListboxAccessible.cpp',
14 'XULMenuAccessible.cpp',
15 'XULSelectControlAccessible.cpp',
16 'XULSliderAccessible.cpp',
17 'XULTabAccessible.cpp',
18 'XULTreeAccessible.cpp',
19 'XULTreeGridAccessible.cpp',
20 ]
22 LOCAL_INCLUDES += [
23 '../../../layout/generic',
24 '../../../layout/xul',
25 '../../../layout/xul/tree',
26 '../base',
27 '../generic',
28 '../html',
29 '../xpcom',
30 ]
32 if CONFIG['MOZ_ENABLE_GTK']:
33 LOCAL_INCLUDES += [
34 '../atk',
35 ]
36 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
37 LOCAL_INCLUDES += [
38 '../windows/ia2',
39 '../windows/msaa',
40 ]
41 elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
42 LOCAL_INCLUDES += [
43 '../mac',
44 ]
45 else:
46 LOCAL_INCLUDES += [
47 '../other',
48 ]
50 FINAL_LIBRARY = 'xul'