summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-03-25 01:02:52 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-03-25 01:02:52 -0400
commitbc127ada3b2387d8d83bed6ea7db9f2a672ef281 (patch)
tree486fe2b3b9edcb801baf33455cc71ed4fc9e0d9c /security
parentcc9b40cc21caa95cb3c9cdb5a147bbeaf320d06f (diff)
downloadUXP-bc127ada3b2387d8d83bed6ea7db9f2a672ef281.tar
UXP-bc127ada3b2387d8d83bed6ea7db9f2a672ef281.tar.gz
UXP-bc127ada3b2387d8d83bed6ea7db9f2a672ef281.tar.lz
UXP-bc127ada3b2387d8d83bed6ea7db9f2a672ef281.tar.xz
UXP-bc127ada3b2387d8d83bed6ea7db9f2a672ef281.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.
Diffstat (limited to 'security')
-rw-r--r--security/manager/ssl/moz.build5
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',
]