diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 03:15:52 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 03:15:52 -0400 |
commit | 036449ae6a68a11848539e42c067de03d2ce637e (patch) | |
tree | e7cd37ed56b2dcf1c38444b449ae394e44bc97af /dom/notification | |
parent | 3920c4d34eb3b504d1562b35ea1bba41b192e03a (diff) | |
download | aura-central-036449ae6a68a11848539e42c067de03d2ce637e.tar.gz |
Issue mcp-graveyard/UXP%80 - De-unify dom/notification
Diffstat (limited to 'dom/notification')
-rw-r--r-- | dom/notification/moz.build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dom/notification/moz.build b/dom/notification/moz.build index d966b160d..8297daa6b 100644 --- a/dom/notification/moz.build +++ b/dom/notification/moz.build @@ -9,9 +9,7 @@ EXTRA_COMPONENTS += [ 'NotificationStorage.manifest', ] -EXTRA_JS_MODULES += [ - 'NotificationDB.jsm' -] +EXTRA_JS_MODULES += ['NotificationDB.jsm'] EXPORTS.mozilla.dom += [ 'DesktopNotification.h', @@ -19,7 +17,7 @@ EXPORTS.mozilla.dom += [ 'NotificationEvent.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'DesktopNotification.cpp', 'Notification.cpp', 'NotificationEvent.cpp', @@ -28,6 +26,7 @@ UNIFIED_SOURCES += [ include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul' + LOCAL_INCLUDES += [ '/dom/base', '/dom/ipc', |