Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | EXPORTS.mozilla.a11y += [ |
michael@0 | 8 | 'Accessible.h', |
michael@0 | 9 | 'DocAccessible.h', |
michael@0 | 10 | 'HyperTextAccessible.h', |
michael@0 | 11 | ] |
michael@0 | 12 | |
michael@0 | 13 | UNIFIED_SOURCES += [ |
michael@0 | 14 | 'Accessible.cpp', |
michael@0 | 15 | 'ApplicationAccessible.cpp', |
michael@0 | 16 | 'ARIAGridAccessible.cpp', |
michael@0 | 17 | 'BaseAccessibles.cpp', |
michael@0 | 18 | 'DocAccessible.cpp', |
michael@0 | 19 | 'FormControlAccessible.cpp', |
michael@0 | 20 | 'HyperTextAccessible.cpp', |
michael@0 | 21 | 'ImageAccessible.cpp', |
michael@0 | 22 | 'OuterDocAccessible.cpp', |
michael@0 | 23 | 'RootAccessible.cpp', |
michael@0 | 24 | 'TableCellAccessible.cpp', |
michael@0 | 25 | 'TextLeafAccessible.cpp', |
michael@0 | 26 | ] |
michael@0 | 27 | |
michael@0 | 28 | LOCAL_INCLUDES += [ |
michael@0 | 29 | '../../../layout/generic', |
michael@0 | 30 | '../../../layout/xul', |
michael@0 | 31 | '../base', |
michael@0 | 32 | '../html', |
michael@0 | 33 | '../xpcom', |
michael@0 | 34 | '../xul', |
michael@0 | 35 | ] |
michael@0 | 36 | |
michael@0 | 37 | if CONFIG['MOZ_ENABLE_GTK']: |
michael@0 | 38 | LOCAL_INCLUDES += [ |
michael@0 | 39 | '../atk', |
michael@0 | 40 | ] |
michael@0 | 41 | elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': |
michael@0 | 42 | LOCAL_INCLUDES += [ |
michael@0 | 43 | '../windows/ia2', |
michael@0 | 44 | '../windows/msaa', |
michael@0 | 45 | ] |
michael@0 | 46 | elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': |
michael@0 | 47 | LOCAL_INCLUDES += [ |
michael@0 | 48 | '../mac', |
michael@0 | 49 | ] |
michael@0 | 50 | else: |
michael@0 | 51 | LOCAL_INCLUDES += [ |
michael@0 | 52 | '../other', |
michael@0 | 53 | ] |
michael@0 | 54 | |
michael@0 | 55 | FINAL_LIBRARY = 'xul' |