diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/events/moz.build | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/events/moz.build')
-rw-r--r-- | dom/events/moz.build | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/dom/events/moz.build b/dom/events/moz.build new file mode 100644 index 000000000..ee4946038 --- /dev/null +++ b/dom/events/moz.build @@ -0,0 +1,162 @@ +# -*- 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/. + +MOCHITEST_MANIFESTS += [ + 'test/mochitest.ini', + 'test/pointerevents/mochitest.ini', +] + +MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini'] + +XPIDL_SOURCES += [ + 'nsIEventListenerService.idl', +] + +XPIDL_MODULE = 'content_events' + +EXPORTS.mozilla += [ + 'AsyncEventDispatcher.h', + 'DOMEventTargetHelper.h', + 'EventDispatcher.h', + 'EventListenerManager.h', + 'EventNameList.h', + 'EventStateManager.h', + 'EventStates.h', + 'IMEStateManager.h', + 'InternalMutationEvent.h', + 'JSEventHandler.h', + 'KeyNameList.h', + 'PhysicalKeyCodeNameList.h', + 'TextComposition.h', + 'VirtualKeyCodeList.h', +] + +EXPORTS.mozilla.dom += [ + 'AnimationEvent.h', + 'BeforeAfterKeyboardEvent.h', + 'BeforeUnloadEvent.h', + 'ClipboardEvent.h', + 'CommandEvent.h', + 'CompositionEvent.h', + 'CustomEvent.h', + 'DataContainerEvent.h', + 'DataTransfer.h', + 'DataTransferItem.h', + 'DataTransferItemList.h', + 'DeviceMotionEvent.h', + 'DragEvent.h', + 'Event.h', + 'EventTarget.h', + 'FocusEvent.h', + 'ImageCaptureError.h', + 'InputEvent.h', + 'KeyboardEvent.h', + 'MessageEvent.h', + 'MouseEvent.h', + 'MouseScrollEvent.h', + 'MutationEvent.h', + 'NotifyPaintEvent.h', + 'PaintRequest.h', + 'PointerEvent.h', + 'ScrollAreaEvent.h', + 'SimpleGestureEvent.h', + 'StorageEvent.h', + 'TextClause.h', + 'Touch.h', + 'TouchEvent.h', + 'TransitionEvent.h', + 'UIEvent.h', + 'WheelEvent.h', + 'XULCommandEvent.h', +] + +if CONFIG['MOZ_WEBSPEECH']: + EXPORTS.mozilla.dom += ['SpeechRecognitionError.h'] + +UNIFIED_SOURCES += [ + 'AnimationEvent.cpp', + 'AsyncEventDispatcher.cpp', + 'BeforeAfterKeyboardEvent.cpp', + 'BeforeUnloadEvent.cpp', + 'ClipboardEvent.cpp', + 'CommandEvent.cpp', + 'CompositionEvent.cpp', + 'ContentEventHandler.cpp', + 'CustomEvent.cpp', + 'DataContainerEvent.cpp', + 'DataTransfer.cpp', + 'DataTransferItem.cpp', + 'DataTransferItemList.cpp', + 'DeviceMotionEvent.cpp', + 'DOMEventTargetHelper.cpp', + 'DragEvent.cpp', + 'Event.cpp', + 'EventDispatcher.cpp', + 'EventListenerManager.cpp', + 'EventListenerService.cpp', + 'EventTarget.cpp', + 'FocusEvent.cpp', + 'ImageCaptureError.cpp', + 'IMEContentObserver.cpp', + 'IMEStateManager.cpp', + 'InputEvent.cpp', + 'JSEventHandler.cpp', + 'KeyboardEvent.cpp', + 'MessageEvent.cpp', + 'MouseEvent.cpp', + 'MouseScrollEvent.cpp', + 'MutationEvent.cpp', + 'NotifyPaintEvent.cpp', + 'PaintRequest.cpp', + 'PointerEvent.cpp', + 'ScrollAreaEvent.cpp', + 'SimpleGestureEvent.cpp', + 'StorageEvent.cpp', + 'TextClause.cpp', + 'TextComposition.cpp', + 'Touch.cpp', + 'TouchEvent.cpp', + 'TransitionEvent.cpp', + 'UIEvent.cpp', + 'WheelEvent.cpp', + 'WheelHandlingHelper.cpp', + 'XULCommandEvent.cpp', +] + +# nsEventStateManager.cpp should be built separately because of Mac OS X headers. +SOURCES += [ + 'EventStateManager.cpp', +] + +if CONFIG['MOZ_WEBSPEECH']: + UNIFIED_SOURCES += ['SpeechRecognitionError.cpp'] + +include('/ipc/chromium/chromium-config.mozbuild') + +FINAL_LIBRARY = 'xul' +LOCAL_INCLUDES += [ + '/docshell/base', + '/dom/base', + '/dom/html', + '/dom/settings', + '/dom/storage', + '/dom/svg', + '/dom/workers', + '/dom/xml', + '/dom/xul', + '/js/xpconnect/wrappers', + '/layout/generic', + '/layout/xul', + '/layout/xul/tree/', +] + +if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': + LOCAL_INCLUDES += [ + '/dom/wifi', + ] + +if CONFIG['GNU_CXX']: + CXXFLAGS += ['-Wno-error=shadow'] |