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-11-14 18:51:01 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 14:54:15 -07:00
|
|
|
'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',
|
|
|
|
'nsScrollbarButtonFrame.cpp',
|
|
|
|
'nsScrollbarFrame.cpp',
|
2013-10-23 16:05:43 -07:00
|
|
|
'nsScrollBoxFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsSliderFrame.cpp',
|
|
|
|
'nsSprocketLayout.cpp',
|
|
|
|
'nsStackFrame.cpp',
|
|
|
|
'nsStackLayout.cpp',
|
|
|
|
'nsXULTooltipListener.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_XUL']:
|
2013-11-14 18:51:01 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsContainerBoxObject.cpp',
|
2013-10-23 16:00:23 -07:00
|
|
|
'nsDeckFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsDocElementBoxFrame.cpp',
|
|
|
|
'nsGroupBoxFrame.cpp',
|
2013-10-23 16:00:23 -07:00
|
|
|
'nsImageBoxFrame.cpp',
|
|
|
|
'nsLeafBoxFrame.cpp',
|
|
|
|
'nsListBoxBodyFrame.cpp',
|
|
|
|
'nsListBoxLayout.cpp',
|
|
|
|
'nsListBoxObject.cpp',
|
|
|
|
'nsListItemFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsMenuBarFrame.cpp',
|
|
|
|
'nsMenuBarListener.cpp',
|
2013-10-23 16:00:23 -07:00
|
|
|
'nsMenuBoxObject.cpp',
|
|
|
|
'nsMenuFrame.cpp',
|
|
|
|
'nsMenuPopupFrame.cpp',
|
|
|
|
'nsPopupBoxObject.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsPopupSetFrame.cpp',
|
2013-10-23 16:00:23 -07:00
|
|
|
'nsProgressMeterFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsResizerFrame.cpp',
|
2013-10-23 16:00:23 -07:00
|
|
|
'nsScrollBoxObject.cpp',
|
|
|
|
'nsSplitterFrame.cpp',
|
|
|
|
'nsTextBoxFrame.cpp',
|
|
|
|
'nsTitleBarFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsXULLabelFrame.cpp',
|
|
|
|
'nsXULPopupManager.cpp',
|
|
|
|
]
|
2013-08-21 23:55:59 -07:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-08-21 23:56:01 -07:00
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
|
2013-11-18 18:47:14 -08:00
|
|
|
FINAL_LIBRARY = 'gklayout'
|
2013-11-28 06:23:10 -08:00
|
|
|
LOCAL_INCLUDES += [
|
2013-12-04 00:23:39 -08:00
|
|
|
'../../../../content/base/src',
|
|
|
|
'../../../../content/events/src',
|
|
|
|
'../../../base',
|
|
|
|
'../../../generic',
|
|
|
|
'../../../style',
|
2013-11-28 06:23:10 -08:00
|
|
|
]
|
|
|
|
|