accessible/src/generic/moz.build

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     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'

mercurial