diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-11-05 18:27:14 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-11-05 18:27:14 -0500 |
commit | 03590a6711d601ef3ddb48787e9f3f556705b5db (patch) | |
tree | b5985c23741cd03fd0ed32537773e07db2d7d21d /mailnews/base/public/moz.build | |
parent | 714afc76f690ba11e77330e067e5bce486292831 (diff) | |
download | uxp-03590a6711d601ef3ddb48787e9f3f556705b5db.tar.gz |
Issue #1258 - Part 8: Ifdef MailNews OAuth2 Support
Use --disable-mailnews-oauth2 to exclude it. Confvars won't be respected.
Diffstat (limited to 'mailnews/base/public/moz.build')
-rw-r--r-- | mailnews/base/public/moz.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mailnews/base/public/moz.build b/mailnews/base/public/moz.build index aaedcd2bb1..e38c223e44 100644 --- a/mailnews/base/public/moz.build +++ b/mailnews/base/public/moz.build @@ -3,11 +3,13 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +if CONFIG['MOZ_MAILNEWS_OAUTH2']: + XPIDL_SOURCES += ['msgIOAuth2Module.idl'] + XPIDL_SOURCES += [ 'MailNewsTypes2.idl', 'mozINewMailListener.idl', 'mozINewMailNotificationService.idl', - 'msgIOAuth2Module.idl', 'nsICopyMessageListener.idl', 'nsICopyMsgStreamListener.idl', 'nsIFolderListener.idl', |