summaryrefslogtreecommitdiffstats
path: root/security/nss/lib/freebl/freebl_base.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'security/nss/lib/freebl/freebl_base.gypi')
-rw-r--r--security/nss/lib/freebl/freebl_base.gypi48
1 files changed, 13 insertions, 35 deletions
diff --git a/security/nss/lib/freebl/freebl_base.gypi b/security/nss/lib/freebl/freebl_base.gypi
index 44e28963b..027aa2702 100644
--- a/security/nss/lib/freebl/freebl_base.gypi
+++ b/security/nss/lib/freebl/freebl_base.gypi
@@ -8,10 +8,8 @@
'alghmac.c',
'arcfive.c',
'arcfour.c',
- 'blake2b.c',
'camellia.c',
'chacha20poly1305.c',
- 'crypto_primitives.c',
'ctr.c',
'cts.c',
'des.c',
@@ -100,6 +98,10 @@
],
}],
[ 'OS=="win"', {
+ 'sources': [
+ #TODO: building with mingw should not need this.
+ 'ecl/uint128.c',
+ ],
'libraries': [
'advapi32.lib',
],
@@ -130,53 +132,29 @@
}],
],
}],
- ['target_arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="aarch64"', {
+ ['target_arch=="ia32" or target_arch=="x64"', {
'sources': [
- # All intel and 64-bit ARM architectures get the 64 bit version.
+ # All intel architectures get the 64 bit version
'ecl/curve25519_64.c',
- 'verified/Hacl_Curve25519.c',
- 'verified/FStar.c',
],
}, {
'sources': [
- # All other architectures get the generic 32 bit implementation (slow!)
+ # All non intel architectures get the generic 32 bit implementation (slow!)
'ecl/curve25519_32.c',
],
}],
+ #TODO uint128.c
[ 'disable_chachapoly==0', {
'conditions': [
- [ 'OS!="win"', {
- 'conditions': [
- [ 'target_arch=="x64"', {
- 'sources': [
- 'chacha20_vec.c',
- 'verified/Hacl_Poly1305_64.c',
- ],
- }, {
- # !Windows & !x64
- 'conditions': [
- [ 'target_arch=="arm64" or target_arch=="aarch64"', {
- 'sources': [
- 'chacha20.c',
- 'verified/Hacl_Chacha20.c',
- 'verified/Hacl_Poly1305_64.c',
- ],
- }, {
- # !Windows & !x64 & !arm64 & !aarch64
- 'sources': [
- 'chacha20.c',
- 'verified/Hacl_Chacha20.c',
- 'poly1305.c',
- ],
- }],
- ],
- }],
+ [ 'OS!="win" and target_arch=="x64"', {
+ 'sources': [
+ 'chacha20_vec.c',
+ 'poly1305-donna-x64-sse2-incremental-source.c',
],
}, {
- # Windows
+ # not x64
'sources': [
'chacha20.c',
- 'verified/Hacl_Chacha20.c',
'poly1305.c',
],
}],