diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 00:53:39 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-04-18 00:53:39 -0400 |
commit | d34a91958ef290f24f37c29eeee28d2f3c497f81 (patch) | |
tree | 6222523ba0015245d37477b2fb406dc56836c848 /dom/broadcastchannel | |
parent | 38bb18bc2052d38ab29644a42d60d3bcb43d25d2 (diff) | |
download | uxp-d34a91958ef290f24f37c29eeee28d2f3c497f81.tar.gz |
Issue #80 - De-unify dom/broadcastchannel
Diffstat (limited to 'dom/broadcastchannel')
-rw-r--r-- | dom/broadcastchannel/moz.build | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/dom/broadcastchannel/moz.build b/dom/broadcastchannel/moz.build index a076331e58..c9d687cbc6 100644 --- a/dom/broadcastchannel/moz.build +++ b/dom/broadcastchannel/moz.build @@ -8,20 +8,16 @@ EXPORTS.mozilla.dom += [ 'BroadcastChannel.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'BroadcastChannel.cpp', 'BroadcastChannelChild.cpp', 'BroadcastChannelParent.cpp', 'BroadcastChannelService.cpp', ] -IPDL_SOURCES += [ - 'PBroadcastChannel.ipdl', -] +IPDL_SOURCES += ['PBroadcastChannel.ipdl'] -LOCAL_INCLUDES += [ - '../workers', -] +LOCAL_INCLUDES += ['../workers'] MOCHITEST_MANIFESTS += ['tests/mochitest.ini'] BROWSER_CHROME_MANIFESTS += ['tests/browser.ini'] |