accessible/src/generic/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/accessible/src/generic/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,55 @@
     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.mozilla.a11y += [
    1.11 +    'Accessible.h',
    1.12 +    'DocAccessible.h',
    1.13 +    'HyperTextAccessible.h',
    1.14 +]
    1.15 +
    1.16 +UNIFIED_SOURCES += [
    1.17 +    'Accessible.cpp',
    1.18 +    'ApplicationAccessible.cpp',
    1.19 +    'ARIAGridAccessible.cpp',
    1.20 +    'BaseAccessibles.cpp',
    1.21 +    'DocAccessible.cpp',
    1.22 +    'FormControlAccessible.cpp',
    1.23 +    'HyperTextAccessible.cpp',
    1.24 +    'ImageAccessible.cpp',
    1.25 +    'OuterDocAccessible.cpp',
    1.26 +    'RootAccessible.cpp',
    1.27 +    'TableCellAccessible.cpp',
    1.28 +    'TextLeafAccessible.cpp',
    1.29 +]
    1.30 +
    1.31 +LOCAL_INCLUDES += [
    1.32 +    '../../../layout/generic',
    1.33 +    '../../../layout/xul',
    1.34 +    '../base',
    1.35 +    '../html',
    1.36 +    '../xpcom',
    1.37 +    '../xul',
    1.38 +]
    1.39 +
    1.40 +if CONFIG['MOZ_ENABLE_GTK']:
    1.41 +    LOCAL_INCLUDES += [
    1.42 +        '../atk',
    1.43 +    ]
    1.44 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
    1.45 +    LOCAL_INCLUDES += [
    1.46 +        '../windows/ia2',
    1.47 +        '../windows/msaa',
    1.48 +    ]
    1.49 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
    1.50 +    LOCAL_INCLUDES += [
    1.51 +        '../mac',
    1.52 +    ]
    1.53 +else:
    1.54 +    LOCAL_INCLUDES += [
    1.55 +        '../other',
    1.56 +    ]
    1.57 +
    1.58 +FINAL_LIBRARY = 'xul'

mercurial