diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-03-25 01:02:52 -0400 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 13:13:44 +0200 |
commit | a0604012643964156eb2ebd196592eedce86c35b (patch) | |
tree | 38c43ab4234f4c11cf8941451027fdd75a213039 | |
parent | 4e26fc1844d6a64a7f0a3bdeafecee5029099b90 (diff) | |
download | UXP-a0604012643964156eb2ebd196592eedce86c35b.tar UXP-a0604012643964156eb2ebd196592eedce86c35b.tar.gz UXP-a0604012643964156eb2ebd196592eedce86c35b.tar.lz UXP-a0604012643964156eb2ebd196592eedce86c35b.tar.xz UXP-a0604012643964156eb2ebd196592eedce86c35b.zip |
Take nsSiteSecurityService out of UNIFIED_SOURCES
It exceeded the obj file sections limit because of the HSTS preload list so it cannot be built in UNIFIED mode.
-rw-r--r-- | security/manager/ssl/moz.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/manager/ssl/moz.build b/security/manager/ssl/moz.build index 94d766a0b..8f4c6e9da 100644 --- a/security/manager/ssl/moz.build +++ b/security/manager/ssl/moz.build @@ -127,7 +127,6 @@ UNIFIED_SOURCES += [ 'nsSecureBrowserUIImpl.cpp', 'nsSecurityHeaderParser.cpp', 'NSSErrorsService.cpp', - 'nsSiteSecurityService.cpp', 'nsSSLSocketProvider.cpp', 'nsSSLStatus.cpp', 'nsTLSSocketProvider.cpp', @@ -141,6 +140,10 @@ UNIFIED_SOURCES += [ 'WeakCryptoOverride.cpp', ] +# nsSiteSecurityService exceeded the obj file sections limit because of the +# HSTS preload list so it cannot be built in UNIFIED mode. +SOURCES += ['nsSiteSecurityService.cpp'] + IPDL_SOURCES += [ 'PPSMContentDownloader.ipdl', ] |