diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-19 14:38:07 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-24 10:34:20 +0200 |
commit | d0a2389b43cfacc38320ec87922bbf71868c2b4d (patch) | |
tree | e86cf6520211ad178832463914b7971e128376e5 /dom/events/moz.build | |
parent | 796a14e11675c7c5f3b73b59d9d18f0acf2049fc (diff) | |
download | UXP-d0a2389b43cfacc38320ec87922bbf71868c2b4d.tar UXP-d0a2389b43cfacc38320ec87922bbf71868c2b4d.tar.gz UXP-d0a2389b43cfacc38320ec87922bbf71868c2b4d.tar.lz UXP-d0a2389b43cfacc38320ec87922bbf71868c2b4d.tar.xz UXP-d0a2389b43cfacc38320ec87922bbf71868c2b4d.zip |
Issue #80 - De-unify dom/events
Diffstat (limited to 'dom/events/moz.build')
-rw-r--r-- | dom/events/moz.build | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/dom/events/moz.build b/dom/events/moz.build index ec3813207..661f56c7e 100644 --- a/dom/events/moz.build +++ b/dom/events/moz.build @@ -76,7 +76,7 @@ EXPORTS.mozilla.dom += [ if CONFIG['MOZ_WEBSPEECH']: EXPORTS.mozilla.dom += ['SpeechRecognitionError.h'] -UNIFIED_SOURCES += [ +SOURCES += [ 'AnimationEvent.cpp', 'AsyncEventDispatcher.cpp', 'BeforeAfterKeyboardEvent.cpp', @@ -97,6 +97,7 @@ UNIFIED_SOURCES += [ 'EventDispatcher.cpp', 'EventListenerManager.cpp', 'EventListenerService.cpp', + 'EventStateManager.cpp', 'EventTarget.cpp', 'FocusEvent.cpp', 'ImageCaptureError.cpp', @@ -126,13 +127,8 @@ UNIFIED_SOURCES += [ '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'] + SOURCES += ['SpeechRecognitionError.cpp'] include('/ipc/chromium/chromium-config.mozbuild') |