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

Side by Side Diff: nss/scripts/nss-checkout.sh

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: Rename mpi_mac.c to mpi_arm_mac.c. Add comments. Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« nss/nss.gyp ('K') | « nss/nss.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This shell script checks out the NSS source tree from CVS and prepares 6 # This shell script checks out the NSS source tree from CVS and prepares
7 # it for Chromium. 7 # it for Chromium.
8 8
9 # Make the script exit as soon as something fails. 9 # Make the script exit as soon as something fails.
10 set -ex 10 set -ex
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ! -name ec.h ! -name ec2.h ! -name ecl-curve.h \ 69 ! -name ec.h ! -name ec2.h ! -name ecl-curve.h \
70 ! -name ecl-exp.h ! -name ecl-priv.h ! -name ecl.c \ 70 ! -name ecl-exp.h ! -name ecl-priv.h ! -name ecl.c \
71 ! -name ecl.c ! -name ecl.h ! -name ecl_curve.c \ 71 ! -name ecl.c ! -name ecl.h ! -name ecl_curve.c \
72 ! -name ecl_gf.c ! -name ecl_mult.c ! -name ecp.h \ 72 ! -name ecl_gf.c ! -name ecl_mult.c ! -name ecp.h \
73 ! -name ecp_aff.c ! -name ecp_jac.c ! -name ecp_jm.c \ 73 ! -name ecp_aff.c ! -name ecp_jac.c ! -name ecp_jm.c \
74 ! -name ecp_mont.c ! -name ec_naf.c ! -name gcm.c ! -name gcm.h \ 74 ! -name ecp_mont.c ! -name ec_naf.c ! -name gcm.c ! -name gcm.h \
75 ! -name jpake.c ! -name md2.c ! -name md5.c ! -name logtab.h \ 75 ! -name jpake.c ! -name md2.c ! -name md5.c ! -name logtab.h \
76 ! -name mpcpucache.c \ 76 ! -name mpcpucache.c \
77 ! -name mpi-config.h \ 77 ! -name mpi-config.h \
78 ! -name mpi-priv.h ! -name mpi.c ! -name mpi.h \ 78 ! -name mpi-priv.h ! -name mpi.c ! -name mpi.h \
79 ! -name mpi_amd64.c ! -name mpi_x86_asm.c ! -name mplogic.c \ 79 ! -name mpi_amd64.c ! -name mpi_arm.c ! -name mpi_x86_asm.c \
wtc 2013/01/30 02:49:30 I added mpi_arm.c to the list of files we want to
80 ! -name mplogic.h ! -name mpmontg.c ! -name mpprime.c \ 80 ! -name mplogic.c ! -name mplogic.h ! -name mpmontg.c \
81 ! -name mpprime.h \ 81 ! -name mpprime.c ! -name mpprime.h \
82 ! -name mp_gf2m-priv.h ! -name mp_gf2m.c ! -name mp_gf2m.h \ 82 ! -name mp_gf2m-priv.h ! -name mp_gf2m.c ! -name mp_gf2m.h \
83 ! -name primes.c ! -name pqg.c ! -name pqg.h ! -name rawhash.c \ 83 ! -name primes.c ! -name pqg.c ! -name pqg.h ! -name rawhash.c \
84 ! -name rijndael.c ! -name rijndael.h ! -name rijndael32.tab \ 84 ! -name rijndael.c ! -name rijndael.h ! -name rijndael32.tab \
85 ! -name rsa.c ! -name secmpi.h \ 85 ! -name rsa.c ! -name secmpi.h \
86 ! -name secrng.h ! -name seed.c ! -name seed.h \ 86 ! -name secrng.h ! -name seed.c ! -name seed.h \
87 ! -name sha256.h ! -name sha512.c ! -name sha_fast.c \ 87 ! -name sha256.h ! -name sha512.c ! -name sha_fast.c \
88 ! -name sha_fast.h ! -name shsign.h ! -name shvfy.c \ 88 ! -name sha_fast.h ! -name shsign.h ! -name shvfy.c \
89 ! -name sysrand.c ! -name tlsprfalg.c ! -name unix_rand.c \ 89 ! -name sysrand.c ! -name tlsprfalg.c ! -name unix_rand.c \
90 ! -name win_rand.c \ 90 ! -name win_rand.c \
91 | xargs rm 91 | xargs rm
OLDNEW
« nss/nss.gyp ('K') | « nss/nss.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698