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

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

Issue 132021: Two requested changes to tick processor. (Closed)
Patch Set: Created 11 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
« no previous file with comments | « no previous file | 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
5 d8_public=`which d8`
6 if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
7 fi
4 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. 8 [ "$D8_PATH" ] || D8_PATH=$tools_path/..
5 d8_exec=$D8_PATH/d8 9 d8_exec=$D8_PATH/d8
6 10
7 # compile d8 if it doesn't exist, assuming this script 11 # compile d8 if it doesn't exist, assuming this script
8 # resides in the repository. 12 # resides in the repository.
9 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 13 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8
10 14
11 # nm spits out 'no symbols found' messages to stderr. 15 # nm spits out 'no symbols found' messages to stderr.
12 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ 16 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
13 $tools_path/csvparser.js $tools_path/consarray.js \ 17 $tools_path/csvparser.js $tools_path/consarray.js \
14 $tools_path/profile.js $tools_path/profile_view.js \ 18 $tools_path/profile.js $tools_path/profile_view.js \
15 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null 19 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null
OLDNEW
« no previous file with comments | « no previous file | tools/tickprocessor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698