accessible/src/xul/moz.build

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     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'

mercurial