diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-03-06 12:01:25 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-03-06 12:01:25 -0500 |
commit | 011610259b2445023cfc779fe8a009c0aad5c420 (patch) | |
tree | 0d4c10decda66b155d171702fe4682330f9e73b3 | |
parent | baeec92b6a638cb6d72876591cfbeb04418cb04b (diff) | |
download | UXP-011610259b2445023cfc779fe8a009c0aad5c420.tar UXP-011610259b2445023cfc779fe8a009c0aad5c420.tar.gz UXP-011610259b2445023cfc779fe8a009c0aad5c420.tar.lz UXP-011610259b2445023cfc779fe8a009c0aad5c420.tar.xz UXP-011610259b2445023cfc779fe8a009c0aad5c420.zip |
Revert "Don't include nsDownloadManagerUI if the Communicator version is used"
This reverts commit 853fe00ba0cb91d564031706ef82038e9a4619ed.
-rw-r--r-- | toolkit/components/downloads/moz.build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/toolkit/components/downloads/moz.build b/toolkit/components/downloads/moz.build index 61271ff27..20394a70d 100644 --- a/toolkit/components/downloads/moz.build +++ b/toolkit/components/downloads/moz.build @@ -53,10 +53,9 @@ if CONFIG['OS_ARCH'] == 'WINNT': 'nsDownloadScanner.cpp', ] -# The Communicator Downloads Manager uses it's own DownloadManagerUI -# component and it can't be guaranteed that it's implimentation will override -# toolkit's so don't include toolkit's -if not CONFIG['MOZ_SUITE'] or not CONFIG['BINOC_COMM_DLMGR']: +# XXX - Until Suite builds off XULRunner we can't guarantee our implementation +# of nsIDownloadManagerUI overrides toolkit's. +if not CONFIG['MOZ_SUITE']: EXTRA_COMPONENTS += [ 'nsDownloadManagerUI.js', 'nsDownloadManagerUI.manifest', |