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: TEST_DIRS += ['test'] michael@0: michael@0: EXPORTS += [ michael@0: 'nsIComboboxControlFrame.h', michael@0: 'nsIFormControlFrame.h', michael@0: 'nsIListControlFrame.h', michael@0: 'nsISelectControlFrame.h', michael@0: 'nsITextControlFrame.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'nsButtonFrameRenderer.cpp', michael@0: 'nsColorControlFrame.cpp', michael@0: 'nsComboboxControlFrame.cpp', michael@0: 'nsFieldSetFrame.cpp', michael@0: 'nsFileControlFrame.cpp', michael@0: 'nsFormControlFrame.cpp', michael@0: 'nsGfxButtonControlFrame.cpp', michael@0: 'nsGfxCheckboxControlFrame.cpp', michael@0: 'nsGfxRadioControlFrame.cpp', michael@0: 'nsHTMLButtonControlFrame.cpp', michael@0: 'nsImageControlFrame.cpp', michael@0: 'nsLegendFrame.cpp', michael@0: 'nsListControlFrame.cpp', michael@0: 'nsMeterFrame.cpp', michael@0: 'nsNumberControlFrame.cpp', michael@0: 'nsProgressFrame.cpp', michael@0: 'nsRangeFrame.cpp', michael@0: 'nsSelectsAreaFrame.cpp', michael@0: 'nsTextControlFrame.cpp', michael@0: ] 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: michael@0: LOCAL_INCLUDES += [ michael@0: '../../content/base/src', michael@0: '../../content/html/content/src', michael@0: '../../editor/libeditor/base', michael@0: '../../editor/libeditor/text', michael@0: '../../editor/txmgr/src', michael@0: '../base', michael@0: '../generic', michael@0: '../xul', michael@0: ] michael@0: michael@0: if CONFIG['ENABLE_INTL_API']: michael@0: # nsNumberControlFrame.cpp requires ICUUtils.h which in turn requires michael@0: # i18n/unum.h michael@0: LOCAL_INCLUDES += [ michael@0: '../../intl/icu/source/common', michael@0: '../../intl/icu/source/i18n', michael@0: ] michael@0: