accessible/src/base/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/accessible/src/base/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,92 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +EXPORTS += [
    1.11 +    'AccEvent.h',
    1.12 +    'nsAccessibilityService.h'
    1.13 +]
    1.14 +
    1.15 +EXPORTS.mozilla.a11y += [
    1.16 +    'AccTypes.h',
    1.17 +    'DocManager.h',
    1.18 +    'FocusManager.h',
    1.19 +    'Platform.h',
    1.20 +    'RelationType.h',
    1.21 +    'Role.h',
    1.22 +    'SelectionManager.h',
    1.23 +    'States.h',
    1.24 +]
    1.25 +
    1.26 +if CONFIG['MOZ_DEBUG']:
    1.27 +    EXPORTS.mozilla.a11y += [
    1.28 +        'Logging.h',
    1.29 +    ]
    1.30 +
    1.31 +UNIFIED_SOURCES += [
    1.32 +    'AccCollector.cpp',
    1.33 +    'AccEvent.cpp',
    1.34 +    'AccGroupInfo.cpp',
    1.35 +    'AccIterator.cpp',
    1.36 +    'ARIAMap.cpp',
    1.37 +    'ARIAStateMap.cpp',
    1.38 +    'Asserts.cpp',
    1.39 +    'DocManager.cpp',
    1.40 +    'EventQueue.cpp',
    1.41 +    'Filters.cpp',
    1.42 +    'FocusManager.cpp',
    1.43 +    'NotificationController.cpp',
    1.44 +    'nsAccessibilityService.cpp',
    1.45 +    'nsAccessiblePivot.cpp',
    1.46 +    'nsAccUtils.cpp',
    1.47 +    'nsCoreUtils.cpp',
    1.48 +    'nsEventShell.cpp',
    1.49 +    'nsTextEquivUtils.cpp',
    1.50 +    'SelectionManager.cpp',
    1.51 +    'StyleInfo.cpp',
    1.52 +    'TextAttrs.cpp',
    1.53 +    'TextRange.cpp',
    1.54 +    'TextUpdater.cpp',
    1.55 +    'TreeWalker.cpp',
    1.56 +]
    1.57 +
    1.58 +if CONFIG['A11Y_LOG']:
    1.59 +    UNIFIED_SOURCES += [
    1.60 +        'Logging.cpp',
    1.61 +    ]
    1.62 +
    1.63 +LOCAL_INCLUDES += [
    1.64 +    '../generic',
    1.65 +    '../html',
    1.66 +    '../xpcom',
    1.67 +    '../xul',
    1.68 +    '/dom/xbl',
    1.69 +    '/ipc/chromium/src',
    1.70 +    '/layout/generic',
    1.71 +    '/layout/style',
    1.72 +    '/layout/svg',
    1.73 +    '/layout/xul',
    1.74 +    '/layout/xul/tree/',
    1.75 +]
    1.76 +
    1.77 +if CONFIG['MOZ_ENABLE_GTK']:
    1.78 +    LOCAL_INCLUDES += [
    1.79 +        '../atk',
    1.80 +    ]
    1.81 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
    1.82 +    LOCAL_INCLUDES += [
    1.83 +        '../windows/ia2',
    1.84 +        '../windows/msaa',
    1.85 +    ]
    1.86 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
    1.87 +    LOCAL_INCLUDES += [
    1.88 +        '../mac',
    1.89 +    ]
    1.90 +else:
    1.91 +    LOCAL_INCLUDES += [
    1.92 +        '../other',
    1.93 +    ]
    1.94 +
    1.95 +FINAL_LIBRARY = 'xul'

mercurial