moz.build (899B)
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 EXPORTS.mozilla.dom += [ 8 "ButtonInputTypes.h", 9 "CheckableInputTypes.h", 10 "ColorInputType.h", 11 "DateTimeInputTypes.h", 12 "FileInputType.h", 13 "HiddenInputType.h", 14 "InputType.h", 15 "NumericInputTypes.h", 16 "SingleLineTextInputTypes.h", 17 ] 18 19 UNIFIED_SOURCES += [ 20 "CheckableInputTypes.cpp", 21 "DateTimeInputTypes.cpp", 22 "FileInputType.cpp", 23 "InputType.cpp", 24 "NumericInputTypes.cpp", 25 "SingleLineTextInputTypes.cpp", 26 ] 27 28 include("/ipc/chromium/chromium-config.mozbuild") 29 30 LOCAL_INCLUDES += [ 31 "/dom/base", 32 "/dom/html", 33 "/layout/forms", 34 ] 35 36 FINAL_LIBRARY = "xul"