moz.build (1270B)
1 # -*- Mode: python; 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/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "Layout: Form Controls") 9 10 MOCHITEST_MANIFESTS += ["test/mochitest.toml"] 11 MOCHITEST_CHROME_MANIFESTS += ["test/chrome.toml"] 12 13 EXPORTS += [ 14 "nsISelectControlFrame.h", 15 ] 16 17 UNIFIED_SOURCES += [ 18 "ButtonControlFrame.cpp", 19 "HTMLSelectEventListener.cpp", 20 "InputButtonControlFrame.cpp", 21 "ListMutationObserver.cpp", 22 "nsCheckboxRadioFrame.cpp", 23 "nsColorControlFrame.cpp", 24 "nsComboboxControlFrame.cpp", 25 "nsDateTimeControlFrame.cpp", 26 "nsFieldSetFrame.cpp", 27 "nsFileControlFrame.cpp", 28 "nsImageControlFrame.cpp", 29 "nsListControlFrame.cpp", 30 "nsNumberControlFrame.cpp", 31 "nsProgressFrame.cpp", 32 "nsRangeFrame.cpp", 33 "nsSearchControlFrame.cpp", 34 "nsTextControlFrame.cpp", 35 ] 36 37 FINAL_LIBRARY = "xul" 38 39 include("/ipc/chromium/chromium-config.mozbuild") 40 41 LOCAL_INCLUDES += [ 42 "../base", 43 "../generic", 44 "../painting", 45 "../style", 46 "../xul", 47 "/dom/base", 48 "/dom/html", 49 ]