diff options
Diffstat (limited to 'dom/interfaces/events/moz.build')
-rw-r--r-- | dom/interfaces/events/moz.build | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dom/interfaces/events/moz.build b/dom/interfaces/events/moz.build new file mode 100644 index 000000000..fb1dc6a21 --- /dev/null +++ b/dom/interfaces/events/moz.build @@ -0,0 +1,35 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# 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/. + +XPIDL_SOURCES += [ + 'nsIDOMAnimationEvent.idl', + 'nsIDOMBeforeUnloadEvent.idl', + 'nsIDOMClipboardEvent.idl', + 'nsIDOMCommandEvent.idl', + 'nsIDOMCustomEvent.idl', + 'nsIDOMDataContainerEvent.idl', + 'nsIDOMDataTransfer.idl', + 'nsIDOMDragEvent.idl', + 'nsIDOMEvent.idl', + 'nsIDOMEventListener.idl', + 'nsIDOMEventTarget.idl', + 'nsIDOMFocusEvent.idl', + 'nsIDOMKeyEvent.idl', + 'nsIDOMMouseEvent.idl', + 'nsIDOMMouseScrollEvent.idl', + 'nsIDOMMutationEvent.idl', + 'nsIDOMNotifyPaintEvent.idl', + 'nsIDOMNSEvent.idl', + 'nsIDOMPaintRequest.idl', + 'nsIDOMScrollAreaEvent.idl', + 'nsIDOMSimpleGestureEvent.idl', + 'nsIDOMTransitionEvent.idl', + 'nsIDOMUIEvent.idl', + 'nsIDOMWheelEvent.idl', +] + +XPIDL_MODULE = 'dom_events' + |