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

Side by Side Diff: scripts/common.sh

Issue 2746004: Restore deps/third_party/valgrind to its state at r48920 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/valgrind/
Patch Set: Created 10 years, 6 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
« no previous file with comments | « scripts/build-tsan-for-chromium.sh ('k') | scripts/fork.patch » ('j') | 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 2
3 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # This script contains some functions useful to build 7 # This script contains some functions useful to build
8 # Valgrind and ThreadSanitizer for use with chromium 8 # Valgrind and ThreadSanitizer for use with chromium
9 9
10 THISDIR=$(dirname "${0}") 10 THISDIR=$(dirname "${0}")
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 *) 211 *)
212 build_valgrind "local" 212 build_valgrind "local"
213 ;; 213 ;;
214 esac 214 esac
215 } 215 }
216 216
217 # Check that the binaries directory exists. 217 # Check that the binaries directory exists.
218 BINARIES_DIR="$THISDIR/../binaries" 218 BINARIES_DIR="$THISDIR/../binaries"
219 if ! [ -a $BINARIES_DIR ] 219 if ! [ -a $BINARIES_DIR ]
220 then 220 then
221 echo "Error: $BINARIES_DIR doesn't exist!" >&2 221 echo "Error: $BINARIES_DIR doesn't exist!"
222 exit 1 222 exit 1
223 fi 223 fi
224 224
225 set -e 225 set -e
226 set -x 226 set -x
OLDNEW
« no previous file with comments | « scripts/build-tsan-for-chromium.sh ('k') | scripts/fork.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698