Bumping manifests a=b2g-bump
[gecko.git] / layout / forms / moz.build
blobbd961dad0d16d85b9bcb0321dc2db6ac6973fd71
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 MOCHITEST_MANIFESTS += ['test/mochitest.ini']
8 MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
10 EXPORTS += [
11     'nsIComboboxControlFrame.h',
12     'nsIFormControlFrame.h',
13     'nsIListControlFrame.h',
14     'nsISelectControlFrame.h',
15     'nsITextControlFrame.h',
18 UNIFIED_SOURCES += [
19     'nsButtonFrameRenderer.cpp',
20     'nsColorControlFrame.cpp',
21     'nsComboboxControlFrame.cpp',
22     'nsFieldSetFrame.cpp',
23     'nsFileControlFrame.cpp',
24     'nsFormControlFrame.cpp',
25     'nsGfxButtonControlFrame.cpp',
26     'nsGfxCheckboxControlFrame.cpp',
27     'nsGfxRadioControlFrame.cpp',
28     'nsHTMLButtonControlFrame.cpp',
29     'nsImageControlFrame.cpp',
30     'nsLegendFrame.cpp',
31     'nsListControlFrame.cpp',
32     'nsMeterFrame.cpp',
33     'nsNumberControlFrame.cpp',
34     'nsProgressFrame.cpp',
35     'nsRangeFrame.cpp',
36     'nsSelectsAreaFrame.cpp',
37     'nsTextControlFrame.cpp',
40 FAIL_ON_WARNINGS = True
42 MSVC_ENABLE_PGO = True
44 FINAL_LIBRARY = 'xul'
46 LOCAL_INCLUDES += [
47     '../../editor/libeditor',
48     '../../editor/txmgr',
49     '../base',
50     '../generic',
51     '../xul',
52     '/dom/base',
53     '/dom/html',
56 if CONFIG['ENABLE_INTL_API']:
57     # nsNumberControlFrame.cpp requires ICUUtils.h which in turn requires
58     # i18n/unum.h
59     LOCAL_INCLUDES += [
60         '../../intl/icu/source/common',
61         '../../intl/icu/source/i18n',
62     ]