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

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

Issue 125256: Implemented processing of compressed log files. (Closed)
Patch Set: Added tests 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
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 tools_path=`cd $(dirname "$0");pwd` 3 tools_path=`cd $(dirname "$0");pwd`
4 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. 4 [ "$D8_PATH" ] || D8_PATH=$tools_path/..
5 d8_exec=$D8_PATH/d8 5 d8_exec=$D8_PATH/d8
6 6
7 # compile d8 if it doesn't exist, assuming this script 7 # compile d8 if it doesn't exist, assuming this script
8 # resides in the repository. 8 # resides in the repository.
9 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 9 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8
10 10
11 # nm spits out 'no symbols found' messages to stderr. 11 # nm spits out 'no symbols found' messages to stderr.
12 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ 12 $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
13 $tools_path/csvparser.js $tools_path/consarray.js \ 13 $tools_path/csvparser.js $tools_path/consarray.js \
14 $tools_path/profile.js $tools_path/profile_view.js \ 14 $tools_path/profile.js $tools_path/profile_view.js \
15 $tools_path/tickprocessor.js -- $@ 2>/dev/null 15 $tools_path/logreader.js $tools_path/tickprocessor.js -- $@ 2>/dev/null
OLDNEW
« no previous file with comments | « test/mjsunit/tools/logreader.js ('k') | tools/logreader.js » ('j') | tools/logreader.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698