layout/xul/moz.build

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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 XPIDL_SOURCES += [
michael@0 8 'nsIBoxObject.idl',
michael@0 9 'nsIBrowserBoxObject.idl',
michael@0 10 'nsIContainerBoxObject.idl',
michael@0 11 'nsIEditorBoxObject.idl',
michael@0 12 'nsIIFrameBoxObject.idl',
michael@0 13 'nsIListBoxObject.idl',
michael@0 14 'nsIMenuBoxObject.idl',
michael@0 15 'nsIPopupBoxObject.idl',
michael@0 16 'nsIScrollBoxObject.idl',
michael@0 17 'nsISliderListener.idl',
michael@0 18 ]
michael@0 19
michael@0 20 XPIDL_MODULE = 'layout_xul'
michael@0 21
michael@0 22 EXPORTS += [
michael@0 23 'nsIScrollbarMediator.h',
michael@0 24 'nsPIBoxObject.h',
michael@0 25 'nsXULPopupManager.h',
michael@0 26 ]
michael@0 27
michael@0 28 UNIFIED_SOURCES += [
michael@0 29 'nsBox.cpp',
michael@0 30 'nsBoxFrame.cpp',
michael@0 31 'nsBoxLayout.cpp',
michael@0 32 'nsBoxLayoutState.cpp',
michael@0 33 'nsBoxObject.cpp',
michael@0 34 'nsButtonBoxFrame.cpp',
michael@0 35 'nsRepeatService.cpp',
michael@0 36 'nsRootBoxFrame.cpp',
michael@0 37 'nsScrollbarButtonFrame.cpp',
michael@0 38 'nsScrollbarFrame.cpp',
michael@0 39 'nsScrollBoxFrame.cpp',
michael@0 40 'nsSliderFrame.cpp',
michael@0 41 'nsSprocketLayout.cpp',
michael@0 42 'nsStackFrame.cpp',
michael@0 43 'nsStackLayout.cpp',
michael@0 44 'nsXULTooltipListener.cpp',
michael@0 45 ]
michael@0 46
michael@0 47 if CONFIG['MOZ_XUL']:
michael@0 48 UNIFIED_SOURCES += [
michael@0 49 'nsContainerBoxObject.cpp',
michael@0 50 'nsDeckFrame.cpp',
michael@0 51 'nsDocElementBoxFrame.cpp',
michael@0 52 'nsGroupBoxFrame.cpp',
michael@0 53 'nsImageBoxFrame.cpp',
michael@0 54 'nsLeafBoxFrame.cpp',
michael@0 55 'nsListBoxBodyFrame.cpp',
michael@0 56 'nsListBoxLayout.cpp',
michael@0 57 'nsListBoxObject.cpp',
michael@0 58 'nsListItemFrame.cpp',
michael@0 59 'nsMenuBarFrame.cpp',
michael@0 60 'nsMenuBarListener.cpp',
michael@0 61 'nsMenuBoxObject.cpp',
michael@0 62 'nsMenuFrame.cpp',
michael@0 63 'nsMenuPopupFrame.cpp',
michael@0 64 'nsPopupBoxObject.cpp',
michael@0 65 'nsPopupSetFrame.cpp',
michael@0 66 'nsProgressMeterFrame.cpp',
michael@0 67 'nsResizerFrame.cpp',
michael@0 68 'nsScrollBoxObject.cpp',
michael@0 69 'nsSplitterFrame.cpp',
michael@0 70 'nsTextBoxFrame.cpp',
michael@0 71 'nsTitleBarFrame.cpp',
michael@0 72 'nsXULLabelFrame.cpp',
michael@0 73 'nsXULPopupManager.cpp',
michael@0 74 ]
michael@0 75
michael@0 76 if CONFIG['ENABLE_TESTS']:
michael@0 77 PARALLEL_DIRS += [
michael@0 78 'test',
michael@0 79 ]
michael@0 80
michael@0 81 if CONFIG['MOZ_XUL']:
michael@0 82 PARALLEL_DIRS += ['tree', 'grid']
michael@0 83
michael@0 84 FAIL_ON_WARNINGS = True
michael@0 85
michael@0 86 MSVC_ENABLE_PGO = True
michael@0 87
michael@0 88 FINAL_LIBRARY = 'gklayout'
michael@0 89 LOCAL_INCLUDES += [
michael@0 90 '../base',
michael@0 91 '../generic',
michael@0 92 '../style',
michael@0 93 '/content/base/src',
michael@0 94 ]
michael@0 95

mercurial