Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(508)

Unified Diff: nss/nss.gyp

Issue 10828060: Use the ARM assembly code in mpi_arm.c for iOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nss/mozilla/security/nss/lib/freebl/mpi/mpi_arm.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/nss.gyp
===================================================================
--- nss/nss.gyp (revision 148841)
+++ nss/nss.gyp (working copy)
@@ -574,6 +574,7 @@
'mozilla/security/nss/lib/freebl/mpi/mpi.c',
'mozilla/security/nss/lib/freebl/mpi/mpi.h',
'mozilla/security/nss/lib/freebl/mpi/mpi_amd64.c',
+ 'mozilla/security/nss/lib/freebl/mpi/mpi_arm.c',
'mozilla/security/nss/lib/freebl/mpi/mpi_x86_asm.c',
'mozilla/security/nss/lib/freebl/mpi/mplogic.c',
'mozilla/security/nss/lib/freebl/mpi/mplogic.h',
@@ -1048,6 +1049,9 @@
'sources/': [
['exclude', 'amd64'],
],
+ 'sources!': [
+ 'mozilla/security/nss/lib/freebl/mpi/mpi_arm.c',
Ryan Sleevi 2012/07/30 06:47:55 nit: It would seem that either line 1050 should be
+ ],
}],
['OS=="mac" or OS=="ios"', {
'defines': [
@@ -1082,6 +1086,13 @@
'NSS_X86_OR_X64',
'NSS_X64',
],
+ 'GCC_PREPROCESSOR_DEFINITIONS[arch=armv7]': [
wtc 2012/07/27 23:31:59 Is this the right way to test for a build that tar
+ '$(inherited)',
+ 'MP_ASSEMBLY_MULTIPLY',
+ 'MP_ASSEMBLY_SQUARE',
+ 'MP_USE_UINT_DIGIT',
+ 'SHA_NO_LONG_LONG',
+ ],
},
}],
['OS=="win"', {
« no previous file with comments | « nss/mozilla/security/nss/lib/freebl/mpi/mpi_arm.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698