michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIBoxObject.idl', michael@0: 'nsIBrowserBoxObject.idl', michael@0: 'nsIContainerBoxObject.idl', michael@0: 'nsIEditorBoxObject.idl', michael@0: 'nsIIFrameBoxObject.idl', michael@0: 'nsIListBoxObject.idl', michael@0: 'nsIMenuBoxObject.idl', michael@0: 'nsIPopupBoxObject.idl', michael@0: 'nsIScrollBoxObject.idl', michael@0: 'nsISliderListener.idl', michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'layout_xul' michael@0: michael@0: EXPORTS += [ michael@0: 'nsIScrollbarMediator.h', michael@0: 'nsPIBoxObject.h', michael@0: 'nsXULPopupManager.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'nsBox.cpp', michael@0: 'nsBoxFrame.cpp', michael@0: 'nsBoxLayout.cpp', michael@0: 'nsBoxLayoutState.cpp', michael@0: 'nsBoxObject.cpp', michael@0: 'nsButtonBoxFrame.cpp', michael@0: 'nsRepeatService.cpp', michael@0: 'nsRootBoxFrame.cpp', michael@0: 'nsScrollbarButtonFrame.cpp', michael@0: 'nsScrollbarFrame.cpp', michael@0: 'nsScrollBoxFrame.cpp', michael@0: 'nsSliderFrame.cpp', michael@0: 'nsSprocketLayout.cpp', michael@0: 'nsStackFrame.cpp', michael@0: 'nsStackLayout.cpp', michael@0: 'nsXULTooltipListener.cpp', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_XUL']: michael@0: UNIFIED_SOURCES += [ michael@0: 'nsContainerBoxObject.cpp', michael@0: 'nsDeckFrame.cpp', michael@0: 'nsDocElementBoxFrame.cpp', michael@0: 'nsGroupBoxFrame.cpp', michael@0: 'nsImageBoxFrame.cpp', michael@0: 'nsLeafBoxFrame.cpp', michael@0: 'nsListBoxBodyFrame.cpp', michael@0: 'nsListBoxLayout.cpp', michael@0: 'nsListBoxObject.cpp', michael@0: 'nsListItemFrame.cpp', michael@0: 'nsMenuBarFrame.cpp', michael@0: 'nsMenuBarListener.cpp', michael@0: 'nsMenuBoxObject.cpp', michael@0: 'nsMenuFrame.cpp', michael@0: 'nsMenuPopupFrame.cpp', michael@0: 'nsPopupBoxObject.cpp', michael@0: 'nsPopupSetFrame.cpp', michael@0: 'nsProgressMeterFrame.cpp', michael@0: 'nsResizerFrame.cpp', michael@0: 'nsScrollBoxObject.cpp', michael@0: 'nsSplitterFrame.cpp', michael@0: 'nsTextBoxFrame.cpp', michael@0: 'nsTitleBarFrame.cpp', michael@0: 'nsXULLabelFrame.cpp', michael@0: 'nsXULPopupManager.cpp', michael@0: ] michael@0: michael@0: if CONFIG['ENABLE_TESTS']: michael@0: PARALLEL_DIRS += [ michael@0: 'test', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_XUL']: michael@0: PARALLEL_DIRS += ['tree', 'grid'] michael@0: michael@0: FAIL_ON_WARNINGS = True michael@0: michael@0: MSVC_ENABLE_PGO = True michael@0: michael@0: FINAL_LIBRARY = 'gklayout' michael@0: LOCAL_INCLUDES += [ michael@0: '../base', michael@0: '../generic', michael@0: '../style', michael@0: '/content/base/src', michael@0: ] michael@0: