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

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

Issue 3135002: Update to NSS 3.12.7 and NSPR 4.8.6.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 4 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
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 NSPR source tree from CVS and prepares 6 # This shell script checks out the NSPR 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
11 11
12 rm -rf mozilla/nsprpub 12 rm -rf mozilla/nsprpub
13 cvs -q -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot export \ 13 cvs -q -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot export \
14 -r NSPR_4_8_4_RTM NSPR 14 -r NSPR_4_8_6_RTM NSPR
15 15
16 rm -r mozilla/nsprpub/admin 16 rm -r mozilla/nsprpub/admin
17 rm -r mozilla/nsprpub/build 17 rm -r mozilla/nsprpub/build
18 rm -r mozilla/nsprpub/config 18 rm -r mozilla/nsprpub/config
19 rm -r mozilla/nsprpub/lib/msgc 19 rm -r mozilla/nsprpub/lib/msgc
20 rm -r mozilla/nsprpub/lib/prstreams 20 rm -r mozilla/nsprpub/lib/prstreams
21 rm -r mozilla/nsprpub/lib/tests 21 rm -r mozilla/nsprpub/lib/tests
22 rm -r mozilla/nsprpub/pkg 22 rm -r mozilla/nsprpub/pkg
23 rm -r mozilla/nsprpub/pr/src/cplus 23 rm -r mozilla/nsprpub/pr/src/cplus
24 rm -r mozilla/nsprpub/pr/tests 24 rm -r mozilla/nsprpub/pr/tests
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 rm mozilla/nsprpub/pr/src/md/windows/ntio.c 63 rm mozilla/nsprpub/pr/src/md/windows/ntio.c
64 rm mozilla/nsprpub/pr/src/md/windows/ntthread.c 64 rm mozilla/nsprpub/pr/src/md/windows/ntthread.c
65 65
66 # Remove obsolete files or files we don't need. 66 # Remove obsolete files or files we don't need.
67 rm mozilla/nsprpub/pr/include/gencfg.c 67 rm mozilla/nsprpub/pr/include/gencfg.c
68 rm mozilla/nsprpub/pr/src/memory/prgcleak.c 68 rm mozilla/nsprpub/pr/src/memory/prgcleak.c
69 rm mozilla/nsprpub/pr/src/misc/compile-et.pl 69 rm mozilla/nsprpub/pr/src/misc/compile-et.pl
70 rm mozilla/nsprpub/pr/src/misc/dtoa.c 70 rm mozilla/nsprpub/pr/src/misc/dtoa.c
71 rm mozilla/nsprpub/pr/src/misc/prerr.et 71 rm mozilla/nsprpub/pr/src/misc/prerr.et
72 rm mozilla/nsprpub/pr/src/misc/prerr.properties 72 rm mozilla/nsprpub/pr/src/misc/prerr.properties
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698