2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:22 -08:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-03-19 11:47:00 -07:00
|
|
|
MODULE = 'layout'
|
|
|
|
|
2013-04-23 14:54:15 -07:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'nsBox.cpp',
|
|
|
|
'nsBoxFrame.cpp',
|
|
|
|
'nsBoxLayout.cpp',
|
|
|
|
'nsBoxLayoutState.cpp',
|
2013-08-14 00:00:29 -07:00
|
|
|
'nsBoxObject.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsButtonBoxFrame.cpp',
|
|
|
|
'nsRepeatService.cpp',
|
|
|
|
'nsRootBoxFrame.cpp',
|
|
|
|
'nsScrollBoxFrame.cpp',
|
|
|
|
'nsScrollbarButtonFrame.cpp',
|
|
|
|
'nsScrollbarFrame.cpp',
|
|
|
|
'nsSliderFrame.cpp',
|
|
|
|
'nsSprocketLayout.cpp',
|
|
|
|
'nsStackFrame.cpp',
|
|
|
|
'nsStackLayout.cpp',
|
|
|
|
'nsXULTooltipListener.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_XUL']:
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'nsScrollBoxObject.cpp',
|
|
|
|
'nsContainerBoxObject.cpp',
|
|
|
|
'nsMenuBoxObject.cpp',
|
|
|
|
'nsPopupBoxObject.cpp',
|
|
|
|
'nsListBoxObject.cpp',
|
|
|
|
'nsImageBoxFrame.cpp',
|
|
|
|
'nsDocElementBoxFrame.cpp',
|
|
|
|
'nsLeafBoxFrame.cpp',
|
|
|
|
'nsTextBoxFrame.cpp',
|
|
|
|
'nsGroupBoxFrame.cpp',
|
|
|
|
'nsSplitterFrame.cpp',
|
|
|
|
'nsDeckFrame.cpp',
|
|
|
|
'nsProgressMeterFrame.cpp',
|
|
|
|
'nsMenuPopupFrame.cpp',
|
|
|
|
'nsMenuFrame.cpp',
|
|
|
|
'nsMenuBarFrame.cpp',
|
|
|
|
'nsMenuBarListener.cpp',
|
|
|
|
'nsPopupSetFrame.cpp',
|
|
|
|
'nsTitleBarFrame.cpp',
|
|
|
|
'nsResizerFrame.cpp',
|
|
|
|
'nsListBoxBodyFrame.cpp',
|
|
|
|
'nsListItemFrame.cpp',
|
|
|
|
'nsListBoxLayout.cpp',
|
|
|
|
'nsXULLabelFrame.cpp',
|
|
|
|
'nsXULPopupManager.cpp',
|
|
|
|
]
|