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 | f59fb63b1aad271f6065f2cc65d7560871e193e6 (patch) | |
tree | e7cd37ed56b2dcf1c38444b449ae394e44bc97af /dom | |
parent | cb554991132aa0988a91a23f066c99c66b81d5d0 (diff) | |
download | uxp-f59fb63b1aad271f6065f2cc65d7560871e193e6.tar.gz |
Issue #80 - De-unify dom/notification
Diffstat (limited to 'dom')
-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 d966b160df..8297daa6b7 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', |