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

Side by Side Diff: tools/linux-tick-processor

Issue 155137: Revert r2372 to get the tree green again. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/tools/tickprocessor-test.separate-ic ('k') | tools/tickprocessor.js » ('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 tools_path=`cd $(dirname "$0");pwd` 3 tools_path=`cd $(dirname "$0");pwd`
4 if [ ! "$D8_PATH" ]; then 4 if [ ! "$D8_PATH" ]; then
5 d8_public=`which d8` 5 d8_public=`which d8`
6 if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi 6 if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
7 fi 7 fi
8 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. 8 [ "$D8_PATH" ] || D8_PATH=$tools_path/..
9 d8_exec=$D8_PATH/d8 9 d8_exec=$D8_PATH/d8
10 10
11 if [ "$1" == "--no-build" ]; then 11 if [ "$1" == "--no-build" ]; then
12 shift 12 shift
13 else 13 else
14 # compile d8 if it doesn't exist, assuming this script 14 # compile d8 if it doesn't exist, assuming this script
15 # resides in the repository. 15 # resides in the repository.
16 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 16 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8
17 fi 17 fi
18 18
19 # nm spits out 'no symbols found' messages to stderr. 19 # nm spits out 'no symbols found' messages to stderr.
20 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ 20 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
21 $tools_path/csvparser.js $tools_path/consarray.js \ 21 $tools_path/csvparser.js $tools_path/consarray.js \
22 $tools_path/profile.js $tools_path/profile_view.js \ 22 $tools_path/profile.js $tools_path/profile_view.js \
23 $tools_path/logreader.js $tools_path/tickprocessor.js \ 23 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null
24 $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null
OLDNEW
« no previous file with comments | « test/mjsunit/tools/tickprocessor-test.separate-ic ('k') | tools/tickprocessor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698