| OLD | NEW |
| (Empty) |
| 1 #!/bin/sh | |
| 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 | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 # This shell script checks out the NSS source tree from hg and prepares | |
| 7 # it for Chromium. | |
| 8 | |
| 9 # Make the script exit as soon as something fails. | |
| 10 set -ex | |
| 11 | |
| 12 # We only need the nss/lib directory, but hg requires us to check out the | |
| 13 # complete nss source tree. | |
| 14 rm -rf nss | |
| 15 hg clone -u NSS_3_23_RTM https://hg.mozilla.org/projects/nss | |
| 16 | |
| 17 # Rename one of the utf8.c files to avoid name conflict. | |
| 18 mv nss/lib/base/utf8.c nss/lib/base/nssutf8.c | |
| 19 | |
| 20 rm -r nss/lib/ckfw/capi | |
| 21 rm -r nss/lib/ckfw/dbm | |
| 22 rm -r nss/lib/ckfw/nssmkey | |
| 23 rm -r nss/lib/crmf | |
| 24 rm -r nss/lib/dbm | |
| 25 rm -r nss/lib/freebl/ecl/tests | |
| 26 rm -r nss/lib/freebl/mpi/doc | |
| 27 rm -r nss/lib/freebl/mpi/tests | |
| 28 rm -r nss/lib/freebl/mpi/utils | |
| 29 rm -r nss/lib/jar | |
| 30 rm -r nss/lib/pkcs12 | |
| 31 rm -r nss/lib/pki/doc | |
| 32 rm -r nss/lib/softoken/legacydb | |
| 33 rm -r nss/lib/sqlite | |
| 34 rm -r nss/lib/sysinit | |
| 35 rm -r nss/lib/zlib | |
| 36 | |
| 37 find nss/lib -name README -print | xargs rm | |
| 38 | |
| 39 # Remove the build system. | |
| 40 find nss/lib -name Makefile -print | xargs rm | |
| 41 find nss/lib -name manifest.mn -print | xargs rm | |
| 42 find nss/lib -name "*.mk" -print | xargs rm | |
| 43 | |
| 44 # Remove files for building shared libraries/DLLs. | |
| 45 find nss/lib -name "*.def" -print | xargs rm | |
| 46 find nss/lib -name "*.rc" -print | xargs rm | |
| 47 | |
| 48 # Remove obsolete files or files we don't need. | |
| 49 rm nss/lib/ckfw/builtins/certdata.perl | |
| 50 rm nss/lib/ckfw/builtins/certdata.txt | |
| 51 rm nss/lib/ckfw/ck.api | |
| 52 rm nss/lib/ckfw/ckapi.perl | |
| 53 rm nss/lib/util/secload.c | |
| 54 rm nss/lib/util/secplcy.c | |
| 55 rm nss/lib/util/secplcy.h | |
| 56 rm nss/lib/smime/*.c | |
| 57 | |
| 58 find nss/lib/ssl -type f ! -name sslerr.h | xargs rm | |
| 59 | |
| 60 find nss/lib/freebl -type f \ | |
| 61 ! -name aeskeywrap.c ! -name alg2268.c ! -name alghmac.c \ | |
| 62 ! -name alghmac.h ! -name arcfive.c ! -name arcfour.c \ | |
| 63 ! -name blapi.h ! -name blapii.h ! -name blapit.h \ | |
| 64 ! -name camellia.c ! -name camellia.h \ | |
| 65 ! -name chacha20.c ! -name chacha20.h ! -name chacha20_vec.c \ | |
| 66 ! -name chacha20poly1305.c ! -name chacha20poly1305.h \ | |
| 67 ! -name ctr.c ! -name ctr.h ! -name cts.c ! -name cts.h \ | |
| 68 ! -name des.c ! -name des.h ! -name desblapi.c ! -name dh.c \ | |
| 69 ! -name drbg.c ! -name dsa.c ! -name ec.c \ | |
| 70 ! -name ec.h ! -name ec2.h ! -name ecdecode.c ! -name ecl-curve.h \ | |
| 71 ! -name ecl-exp.h ! -name ecl-priv.h ! -name ecl.c \ | |
| 72 ! -name ecl.c ! -name ecl.h ! -name ecl_curve.c \ | |
| 73 ! -name ecl_gf.c ! -name ecl_mult.c ! -name ecp.h \ | |
| 74 ! -name ecp_256.c ! -name ecp_256_32.c \ | |
| 75 ! -name ecp_384.c ! -name ecp_521.c \ | |
| 76 ! -name ecp_aff.c ! -name ecp_jac.c ! -name ecp_jm.c \ | |
| 77 ! -name ecp_mont.c ! -name ec_naf.c ! -name gcm.c ! -name gcm.h \ | |
| 78 ! -name hmacct.c ! -name hmacct.h \ | |
| 79 ! -name intel-aes.h ! -name intel-gcm-wrap.c ! -name intel-gcm.h \ | |
| 80 ! -name intel-aes-x64-masm.asm ! -name intel-aes-x86-masm.asm \ | |
| 81 ! -name intel-gcm-x64-masm.asm ! -name intel-gcm-x86-masm.asm \ | |
| 82 ! -name jpake.c ! -name md2.c \ | |
| 83 ! -name md5.c ! -name logtab.h ! -name mpcpucache.c \ | |
| 84 ! -name mpi-config.h \ | |
| 85 ! -name mpi-priv.h ! -name mpi.c ! -name mpi.h \ | |
| 86 ! -name mpi_amd64.c ! -name mpi_arm.c ! -name mpi_x86_asm.c \ | |
| 87 ! -name mplogic.c ! -name mplogic.h ! -name mpmontg.c \ | |
| 88 ! -name mpprime.c ! -name mpprime.h \ | |
| 89 ! -name mp_gf2m-priv.h ! -name mp_gf2m.c ! -name mp_gf2m.h \ | |
| 90 ! -name poly1305-donna-x64-sse2-incremental-source.c \ | |
| 91 ! -name poly1305.c ! -name poly1305.h \ | |
| 92 ! -name primes.c ! -name pqg.c ! -name pqg.h ! -name rawhash.c \ | |
| 93 ! -name rijndael.c ! -name rijndael.h ! -name rijndael32.tab \ | |
| 94 ! -name rsa.c ! -name rsapkcs.c ! -name secmpi.h \ | |
| 95 ! -name secrng.h ! -name seed.c ! -name seed.h \ | |
| 96 ! -name sha256.h ! -name sha512.c ! -name sha_fast.c \ | |
| 97 ! -name sha_fast.h ! -name shsign.h ! -name shvfy.c \ | |
| 98 ! -name sysrand.c ! -name tlsprfalg.c ! -name unix_rand.c \ | |
| 99 ! -name win_rand.c \ | |
| 100 | xargs rm | |
| OLD | NEW |